| Index: pkg/analysis_server/test/analysis/update_content_test.dart
|
| diff --git a/pkg/analysis_server/test/analysis/update_content_test.dart b/pkg/analysis_server/test/analysis/update_content_test.dart
|
| index ea7db860e9b36d0f072d21bd6305451eeb4d6196..8bd671c86b95b2091bec51d598c1c260ccbdd73a 100644
|
| --- a/pkg/analysis_server/test/analysis/update_content_test.dart
|
| +++ b/pkg/analysis_server/test/analysis/update_content_test.dart
|
| @@ -69,23 +69,17 @@ class UpdateContentTest extends AbstractAnalysisTest {
|
|
|
| test_multiple_contexts() async {
|
| String fooPath = '/project1/foo.dart';
|
| - resourceProvider.newFile(
|
| - fooPath,
|
| - '''
|
| + resourceProvider.newFile(fooPath, '''
|
| library foo;
|
| import '../project2/baz.dart';
|
| main() { f(); }''');
|
| String barPath = '/project2/bar.dart';
|
| - resourceProvider.newFile(
|
| - barPath,
|
| - '''
|
| + resourceProvider.newFile(barPath, '''
|
| library bar;
|
| import 'baz.dart';
|
| main() { f(); }''');
|
| String bazPath = '/project2/baz.dart';
|
| - resourceProvider.newFile(
|
| - bazPath,
|
| - '''
|
| + resourceProvider.newFile(bazPath, '''
|
| library baz;
|
| f(int i) {}
|
| ''');
|
|
|