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

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

Issue 508203002: Rename some bools in the analysis server API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/integration/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart
index 305ea8a5671fb17be7638c4fbe67b72d457a289d..d4467f23eb97f263c37777c450065dde5faf3d1a 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -120,7 +120,7 @@ abstract class AbstractAnalysisServerIntegrationTest extends
subscription = onServerStatus.listen((params) {
bool analysisComplete = false;
try {
- analysisComplete = !params['analysis']['analyzing'];
+ analysisComplete = !params['analysis']['isAnalyzing'];
} catch (_) {
// Status message was mal-formed or missing optional parameters. That's
// fine, since we'll detect a mal-formed status message below.

Powered by Google App Engine
This is Rietveld 408576698