| Index: pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart
|
| index 568d7964f6dfe6282a3af67812d94dda0dcdc126..9265a6243cae76dd6d8614046227a505e447b723 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart
|
| @@ -7,15 +7,17 @@ library test.services.completion.contributor.dart.inherited_ref;
|
| import 'package:analysis_server/src/protocol_server.dart';
|
| import 'package:analysis_server/src/provisional/completion/dart/completion_dart.dart';
|
| import 'package:analysis_server/src/services/completion/dart/inherited_reference_contributor.dart';
|
| +import 'package:test/test.dart';
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
| -import 'package:unittest/unittest.dart';
|
|
|
| import '../../../utils.dart';
|
| import 'completion_contributor_util.dart';
|
|
|
| main() {
|
| initializeTestEnvironment();
|
| - defineReflectiveTests(InheritedContributorTest);
|
| + defineReflectiveSuite(() {
|
| + defineReflectiveTests(InheritedContributorTest);
|
| + });
|
| }
|
|
|
| @reflectiveTest
|
|
|