| Index: pkg/analysis_server/test/src/test_all.dart
|
| diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
|
| index 63a5bcf65f94905b4de79e96b409a16c3876dc0e..c047cf47f272608b01efdd7c8f9ba289b1a19c3a 100644
|
| --- a/pkg/analysis_server/test/src/test_all.dart
|
| +++ b/pkg/analysis_server/test/src/test_all.dart
|
| @@ -2,10 +2,9 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library test.src;
|
| -
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
| +import 'domain_abstract_test.dart' as domain_abstract_test;
|
| import 'plugin/test_all.dart' as plugin_all;
|
| import 'utilities/test_all.dart' as utilities_all;
|
|
|
| @@ -14,7 +13,8 @@ import 'utilities/test_all.dart' as utilities_all;
|
| */
|
| main() {
|
| defineReflectiveSuite(() {
|
| + domain_abstract_test.main();
|
| plugin_all.main();
|
| utilities_all.main();
|
| - }, name: 'analysis_server');
|
| + }, name: 'src');
|
| }
|
|
|