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

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

Issue 337943002: Adjust server for API changes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed bug Created 6 years, 6 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/analysis_abstract.dart
diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
index 358b54d84c069c02a4a1796f715aaf6a4d43d673..0164cf8f12af3fd0adac6f8a66b8e2b608d02e3f 100644
--- a/pkg/analysis_server/test/analysis_abstract.dart
+++ b/pkg/analysis_server/test/analysis_abstract.dart
@@ -64,7 +64,7 @@ class AbstractAnalysisTest {
}
files.add(file);
// set subscriptions
- Request request = new Request('0', METHOD_SET_ANALYSIS_SUBSCRIPTIONS);
+ Request request = new Request('0', ANALYSIS_SET_SUBSCRIPTIONS);
request.setParameter(SUBSCRIPTIONS, analysisSubscriptions);
handleSuccessfulRequest(request);
}
@@ -188,7 +188,7 @@ class AbstractAnalysisTest {
*/
void _createEmptyProject() {
resourceProvider.newFolder(projectPath);
- Request request = new Request('0', METHOD_SET_ANALYSIS_ROOTS);
+ Request request = new Request('0', ANALYSIS_SET_ANALYSIS_ROOTS);
request.setParameter(INCLUDED, [projectPath]);
request.setParameter(EXCLUDED, []);
handleSuccessfulRequest(request);
« no previous file with comments | « pkg/analysis_server/lib/src/socket_server.dart ('k') | pkg/analysis_server/test/analysis_notification_navigation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698