Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(431)

Unified Diff: pkg/analysis_server/test/integration/analysis/update_options_test.dart

Issue 2710193002: Update the analysis server integration tests to always run on the analysis driver. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/integration/analysis/update_options_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/update_options_test.dart b/pkg/analysis_server/test/integration/analysis/update_options_test.dart
index af625385c5aa7b33fb0f8ecea916f2ccb290db8d..47a858c9c39bac6931b131ab7fad839c6cd80f63 100644
--- a/pkg/analysis_server/test/integration/analysis/update_options_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/update_options_test.dart
@@ -32,17 +32,16 @@ class Foo {
''');
standardAnalysisSetup();
- await sendAnalysisUpdateOptions(new AnalysisOptions()..generateHints = false);
+ await sendAnalysisUpdateOptions(
+ new AnalysisOptions()..generateHints = false);
await sendAnalysisReanalyze();
await analysisFinished;
expect(getErrors(pathname), isEmpty);
- await sendAnalysisUpdateOptions(new AnalysisOptions()..generateHints = true);
+ await sendAnalysisUpdateOptions(
+ new AnalysisOptions()..generateHints = true);
await sendAnalysisReanalyze();
await analysisFinished;
expect(getErrors(pathname), hasLength(1));
}
-
- @override
- bool get enableNewAnalysisDriver => true;
}

Powered by Google App Engine
This is Rietveld 408576698