| Index: pkg/analysis_server/test/services/completion/test_all.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/test_all.dart b/pkg/analysis_server/test/services/completion/test_all.dart
|
| index a59287d8e92b4b8b63ea602e23bdcfa4feff7732..e89a4e8bd5af29554195d35bce9be550e937f34e 100644
|
| --- a/pkg/analysis_server/test/services/completion/test_all.dart
|
| +++ b/pkg/analysis_server/test/services/completion/test_all.dart
|
| @@ -4,13 +4,14 @@
|
|
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
| -import 'dart/test_all.dart' as dart_contributor_tests;
|
| -import 'statement/statement_completion_test.dart' as statement_completion_test;
|
| +import 'dart/test_all.dart' as dart_all;
|
| +import 'postfix/test_all.dart' as postfix_all;
|
| +import 'statement/test_all.dart' as statement_all;
|
|
|
| -/// Utility for manually running all tests.
|
| main() {
|
| defineReflectiveSuite(() {
|
| - dart_contributor_tests.main();
|
| - statement_completion_test.main();
|
| + dart_all.main();
|
| + postfix_all.main();
|
| + statement_all.main();
|
| }, name: 'completion');
|
| }
|
|
|