| Index: packages/analyzer/test/test_all.dart
|
| diff --git a/packages/analyzer/test/test_all.dart b/packages/analyzer/test/test_all.dart
|
| index c21cc3f8df118e3d2425bd407638be865988905f..1d598fbe94fbf2d6a5fff70c5fb3add43b826382 100644
|
| --- a/packages/analyzer/test/test_all.dart
|
| +++ b/packages/analyzer/test/test_all.dart
|
| @@ -2,12 +2,12 @@
|
| // 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.engine;
|
| +library analyzer.test.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| import 'cancelable_future_test.dart' as cancelable_future_test;
|
| -import 'enum_test.dart' as enum_test;
|
| +import 'context/test_all.dart' as context;
|
| import 'file_system/test_all.dart' as file_system;
|
| import 'generated/test_all.dart' as generated;
|
| import 'instrumentation/test_all.dart' as instrumentation;
|
| @@ -21,7 +21,7 @@ main() {
|
| initializeTestEnvironment();
|
| group('analysis engine', () {
|
| cancelable_future_test.main();
|
| - enum_test.main();
|
| + context.main();
|
| file_system.main();
|
| generated.main();
|
| instrumentation.main();
|
|
|