Index: pkg/analysis_server/test/analysis_server_test.dart |
diff --git a/pkg/analysis_server/test/analysis_server_test.dart b/pkg/analysis_server/test/analysis_server_test.dart |
index e74b13d025fef23f701588ef51b31df83b556ee4..a79dea602ee176ec8c0ac0946cbbdadcd6dcd5ee 100644 |
--- a/pkg/analysis_server/test/analysis_server_test.dart |
+++ b/pkg/analysis_server/test/analysis_server_test.dart |
@@ -153,9 +153,7 @@ class AnalysisServerTest { |
test_setAnalysisSubscriptions_fileInIgnoredFolder_newOptions() async { |
String path = '/project/samples/sample.dart'; |
resourceProvider.newFile(path, ''); |
- resourceProvider.newFile( |
- '/project/analysis_options.yaml', |
- r''' |
+ resourceProvider.newFile('/project/analysis_options.yaml', r''' |
analyzer: |
exclude: |
- 'samples/**' |
@@ -174,9 +172,7 @@ analyzer: |
test_setAnalysisSubscriptions_fileInIgnoredFolder_oldOptions() async { |
String path = '/project/samples/sample.dart'; |
resourceProvider.newFile(path, ''); |
- resourceProvider.newFile( |
- '/project/.analysis_options', |
- r''' |
+ resourceProvider.newFile('/project/.analysis_options', r''' |
analyzer: |
exclude: |
- 'samples/**' |