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

Unified Diff: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java

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: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java
index a7fa7790918ebd4deafbc77dc85fc9dd3a98ff88..57ccc0cb8e5a4105ab517e52296b1b5fe8e0473d 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java
@@ -70,7 +70,7 @@ public class TestAnalysisServerListener implements AnalysisServerListener {
private AnalysisStatus analysisStatus = null;
public synchronized void assertAnalysisStatus(AnalysisStatus expectedStatus) {
- Assert.assertEquals(expectedStatus.isAnalyzing(), analysisStatus.isAnalyzing());
+ Assert.assertEquals(expectedStatus.isIsAnalyzing(), analysisStatus.isIsAnalyzing());
Assert.assertEquals(expectedStatus.getAnalysisTarget(), analysisStatus.getAnalysisTarget());
}

Powered by Google App Engine
This is Rietveld 408576698