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

Unified Diff: pkg/analysis_server/test/integration/server/status_test.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/server/status_test.dart
diff --git a/pkg/analysis_server/test/integration/server/status_test.dart b/pkg/analysis_server/test/integration/server/status_test.dart
index a3ab34a47b98f6866956564c05a3d3ef2087cda2..1ba5b7d4e625cf787f4b54378285a1977a56d145 100644
--- a/pkg/analysis_server/test/integration/server/status_test.dart
+++ b/pkg/analysis_server/test/integration/server/status_test.dart
@@ -21,7 +21,7 @@ class Test extends AbstractAnalysisServerIntegrationTest {
Completer analysisFinished = new Completer();
onServerStatus.listen((params) {
if (params['analysis'] != null) {
- if (params['analysis']['analyzing']) {
+ if (params['analysis']['isAnalyzing']) {
expect(analysisBegun.isCompleted, isFalse);
analysisBegun.complete();
} else {

Powered by Google App Engine
This is Rietveld 408576698