| Index: tests/standalone/vmservice/unknown_isolate_command_test.dart
|
| diff --git a/tests/standalone/vmservice/unknown_isolate_command_test.dart b/tests/standalone/vmservice/unknown_isolate_command_test.dart
|
| index 32426ab2a7b6f30ad9855fa9edcd96f093f97173..c1c16f275087e2a9ec4dc49dff5829bfae3a252b 100644
|
| --- a/tests/standalone/vmservice/unknown_isolate_command_test.dart
|
| +++ b/tests/standalone/vmservice/unknown_isolate_command_test.dart
|
| @@ -17,12 +17,12 @@ class ClassTableTest 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);
|
| }
|
| @@ -31,7 +31,7 @@ class IsolateListTest extends VmServiceRequestHelper {
|
| main() {
|
| var process = new TestLauncher('field_script.dart');
|
| process.launch().then((port) {
|
| - var test = new IsolateListTest(port);
|
| + var test = new VMTest(port);
|
| test.makeRequest().then((_) {
|
| var classTableTest = new ClassTableTest(port, test._isolateId);
|
| classTableTest.makeRequest().then((_) {
|
|
|