Index: tests/standalone/vmservice/isolate_bad_class_test.dart |
diff --git a/tests/standalone/vmservice/isolate_bad_class_test.dart b/tests/standalone/vmservice/isolate_bad_class_test.dart |
index 8fc93cb1b33f8a128df9bbe7aacd30206f5f3a59..e97ef7b38ec7a2f380432d5ac1d43a788b5cc9b6 100644 |
--- a/tests/standalone/vmservice/isolate_bad_class_test.dart |
+++ b/tests/standalone/vmservice/isolate_bad_class_test.dart |
@@ -26,12 +26,12 @@ class BadCollectionTest extends VmServiceRequestHelper { |
} |
} |
-class IsolateListTest extends VmServiceRequestHelper { |
- IsolateListTest(port) : super('http://127.0.0.1:$port/isolates'); |
+class VMTest extends VmServiceRequestHelper { |
+ VMTest(port) : super('http://127.0.0.1:$port/vm'); |
String _isolateId; |
onRequestCompleted(Map reply) { |
- IsolateListTester tester = new IsolateListTester(reply); |
+ VMTester tester = new VMTester(reply); |
tester.checkIsolateCount(1); |
_isolateId = tester.getIsolateId(0); |
} |
@@ -40,7 +40,7 @@ class IsolateListTest extends VmServiceRequestHelper { |
main() { |
var process = new TestLauncher('unknown_isolate_command_script.dart'); |
process.launch().then((port) { |
- var test = new IsolateListTest(port); |
+ var test = new VMTest(port); |
test.makeRequest().then((_) { |
var badCollectionRequest = |
new BadCollectionTest(port, test._isolateId, |