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 15ed63a58fd6c36a0d8222acf834064522b96dd3..f230deb35541ea2b3e6958b40a155037a4b41677 100644 |
--- a/pkg/analysis_server/test/integration/analysis/update_options_test.dart |
+++ b/pkg/analysis_server/test/integration/analysis/update_options_test.dart |
@@ -32,12 +32,14 @@ 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)); |