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

Unified Diff: pkg/analysis_server/test/integration/support/integration_tests.dart

Issue 2960073002: Generate constants in server as we do in plugin (Closed)
Patch Set: improve names Created 3 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/integration/support/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/support/integration_tests.dart b/pkg/analysis_server/test/integration/support/integration_tests.dart
index 3066be3e20c8476439056881932b9ac2785227b4..1ce540c7ba2cdada86bd0ad59c940bae99007253 100644
--- a/pkg/analysis_server/test/integration/support/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/support/integration_tests.dart
@@ -7,8 +7,8 @@ import 'dart:collection';
import 'dart:convert';
import 'dart:io';
+import 'package:analysis_server/protocol/protocol_constants.dart';
import 'package:analysis_server/protocol/protocol_generated.dart';
-import 'package:analysis_server/src/constants.dart';
import 'package:analyzer_plugin/protocol/protocol_common.dart';
import 'package:path/path.dart';
import 'package:test/test.dart';
@@ -125,7 +125,7 @@ abstract class AbstractAnalysisServerIntegrationTest
bool skipShutdown = false;
/**
- * True if we are currently subscribed to [SERVER_STATUS] updates.
+ * True if we are currently subscribed to [SERVER_NOTIFICATION_STATUS] updates.
*/
bool _subscribedToServerStatus = false;
@@ -240,8 +240,8 @@ abstract class AbstractAnalysisServerIntegrationTest
/**
* Send the server an 'analysis.setAnalysisRoots' command directing it to
* analyze [sourceDirectory]. If [subscribeStatus] is true (the default),
- * then also enable [SERVER_STATUS] notifications so that [analysisFinished]
- * can be used.
+ * then also enable [SERVER_NOTIFICATION_STATUS] notifications so that
+ * [analysisFinished] can be used.
*/
Future standardAnalysisSetup({bool subscribeStatus: true}) {
List<Future> futures = <Future>[];

Powered by Google App Engine
This is Rietveld 408576698