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

Unified Diff: pkg/analysis_server/test/domain_execution_test.dart

Issue 1223413003: Hook for overriding the ContextManager and some code clean-up (with more to follow) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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/domain_execution_test.dart
diff --git a/pkg/analysis_server/test/domain_execution_test.dart b/pkg/analysis_server/test/domain_execution_test.dart
index 0bab760271c42174aa93c87f2e72e667a8515c3d..8fa92346ba5e7f49e2b2c3015bf0de97a3b2b4ab 100644
--- a/pkg/analysis_server/test/domain_execution_test.dart
+++ b/pkg/analysis_server/test/domain_execution_test.dart
@@ -230,7 +230,7 @@ main() {
AnalysisServer server = new AnalysisServerMock();
when(server.getAnalysisContexts()).thenReturn([context]);
- when(server.contextDirectoryManager).thenReturn(manager);
+ when(server.contextManager).thenReturn(manager);
StreamController controller = new StreamController.broadcast(sync: true);
when(server.onFileAnalyzed).thenReturn(controller.stream);

Powered by Google App Engine
This is Rietveld 408576698