| Index: pkg/analysis_server/test/services/index/store/split_store_test.dart
|
| diff --git a/pkg/analysis_server/test/services/index/store/split_store_test.dart b/pkg/analysis_server/test/services/index/store/split_store_test.dart
|
| index b954996bfc6a4478c9d7fd7f4a50825b76a57aef..c663dc42f12299275eff9921153721db2d4bf8b7 100644
|
| --- a/pkg/analysis_server/test/services/index/store/split_store_test.dart
|
| +++ b/pkg/analysis_server/test/services/index/store/split_store_test.dart
|
| @@ -20,11 +20,12 @@ import 'package:typed_mock/typed_mock.dart';
|
| import 'package:unittest/unittest.dart';
|
|
|
| import '../../../mocks.dart';
|
| +import '../../../utils.dart';
|
| import 'mocks.dart';
|
| import 'single_source_container.dart';
|
|
|
| main() {
|
| - groupSep = ' | ';
|
| + initializeTestEnvironment();
|
| defineReflectiveTests(_FileNodeManagerTest);
|
| defineReflectiveTests(_IndexNodeTest);
|
| defineReflectiveTests(_LocationDataTest);
|
| @@ -33,7 +34,8 @@ main() {
|
| }
|
|
|
| void _assertHasLocation(List<LocationImpl> locations, IndexableElement element,
|
| - int offset, int length, {bool isQualified: false, bool isResolved: true}) {
|
| + int offset, int length,
|
| + {bool isQualified: false, bool isResolved: true}) {
|
| for (LocationImpl location in locations) {
|
| if ((element == null || location.indexable == element) &&
|
| location.offset == offset &&
|
|
|