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

Unified Diff: pkg/analysis_server/test/services/index/dart_index_contributor_test.dart

Issue 1359023002: Extract Dart specific node management into DartUnitIndexObjectManager. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/dart_index_contributor_test.dart
diff --git a/pkg/analysis_server/test/services/index/dart_index_contributor_test.dart b/pkg/analysis_server/test/services/index/dart_index_contributor_test.dart
index b8cd560aa53c7d126242f11ad4b525eb776ade9f..022a7c9e0a7aa5cb62152149d4450f3057e85c0e 100644
--- a/pkg/analysis_server/test/services/index/dart_index_contributor_test.dart
+++ b/pkg/analysis_server/test/services/index/dart_index_contributor_test.dart
@@ -69,7 +69,7 @@ class DartUnitContributorTest extends AbstractSingleUnitTest {
void setUp() {
super.setUp();
- when(store.aboutToIndexDart(context, anyObject)).thenReturn(true);
+ when(store.aboutToIndex(context, anyObject)).thenReturn(true);
when(store.recordRelationship(anyObject, anyObject, anyObject)).thenInvoke(
(IndexableObject indexable, RelationshipImpl relationship,
LocationImpl location) {

Powered by Google App Engine
This is Rietveld 408576698