| Index: tests/standalone/vmservice/isolate_library_test.dart
|
| diff --git a/tests/standalone/vmservice/isolate_library_test.dart b/tests/standalone/vmservice/isolate_library_test.dart
|
| index 2ff4d7f80f407cf2605f515afad31d0b40015ff0..8ff46498c6bc52f0357e8de1008fcfe5bcdc59f4 100644
|
| --- a/tests/standalone/vmservice/isolate_library_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_library_test.dart
|
| @@ -30,12 +30,12 @@ class IsolateSummaryTest 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(2);
|
| // TODO(turnidge): Fragile. Relies on isolate order in response.
|
| _isolateId = tester.getIsolateId(1);
|
| @@ -45,7 +45,7 @@ class IsolateListTest extends VmServiceRequestHelper {
|
| main() {
|
| var process = new TestLauncher('isolate_stacktrace_command_script.dart');
|
| process.launch().then((port) {
|
| - var test = new IsolateListTest(port);
|
| + var test = new VMTest(port);
|
| test.makeRequest().then((_) {
|
| var isolateSummaryTest =
|
| new IsolateSummaryTest(port, test._isolateId);
|
|
|