Index: pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart |
diff --git a/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart |
index 96ecf43c438b4c8afc5aeda3068fdd8c10746bde..e0d356c12b2cee3b96c0aeb5b9dc070556873c6b 100644 |
--- a/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart |
+++ b/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart |
@@ -53,9 +53,7 @@ class C extends B { |
} |
test_fromPart() async { |
- addSource( |
- '/myLib.dart', |
- ''' |
+ addSource('/myLib.dart', ''' |
library myLib; |
part '$testFile' |
part '/otherPart.dart' |
@@ -64,9 +62,7 @@ class A { |
B suggested2(String y) => null; |
} |
'''); |
- addSource( |
- '/otherPart.dart', |
- ''' |
+ addSource('/otherPart.dart', ''' |
part of myLib; |
class B extends A { |
B suggested2(String y) => null; |