| Index: pkg/analysis_services/test/completion/test_all.dart
|
| diff --git a/pkg/analysis_services/test/completion/test_all.dart b/pkg/analysis_services/test/completion/test_all.dart
|
| index c05b3b61b2f6468a344214a5065d28af6a86a873..32a042869b382285c8fe355e94069f9ffce6ee69 100644
|
| --- a/pkg/analysis_services/test/completion/test_all.dart
|
| +++ b/pkg/analysis_services/test/completion/test_all.dart
|
| @@ -6,12 +6,14 @@ library test.services.completion;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'top_level_computer_test.dart' as toplevel_test;
|
| +import 'completion_computer_test.dart' as completion_test;
|
| +import 'top_level_computer_test.dart' as topLevel_test;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| groupSep = ' | ';
|
| group('completion', () {
|
| - toplevel_test.main();
|
| + completion_test.main();
|
| + topLevel_test.main();
|
| });
|
| }
|
|
|