Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: pkg/analysis_server/test/services/index/store/split_store_test.dart

Issue 1266923004: More fixes for failures on the Windows bot (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 &&

Powered by Google App Engine
This is Rietveld 408576698