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

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

Issue 460423003: Get the RemoteAnalysisServer to compile against the new generated AnalysisServer interface. (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/integration/AbstractServerIntegrationTest.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/integration/AbstractServerIntegrationTest.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/integration/AbstractServerIntegrationTest.java
index 5cba30c6f11286552baae129916e9f44b7e2f27a..d8de21d422e5ce256c1e858dab18ba23f1562e05 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/integration/AbstractServerIntegrationTest.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/integration/AbstractServerIntegrationTest.java
@@ -65,7 +65,7 @@ public abstract class AbstractServerIntegrationTest extends TestCase {
// }
public void test_shutdown() throws Exception {
- server.shutdown();
+ server.server_shutdown();
}
protected abstract void initServer() throws Exception;
@@ -78,7 +78,7 @@ public abstract class AbstractServerIntegrationTest extends TestCase {
@Override
protected void tearDown() throws Exception {
- server.shutdown();
+ server.server_shutdown();
server = null;
super.tearDown();
}

Powered by Google App Engine
This is Rietveld 408576698