| Index: dart/tests/standalone/vmservice/isolate_echo_test.dart
|
| ===================================================================
|
| --- dart/tests/standalone/vmservice/isolate_echo_test.dart (revision 31530)
|
| +++ dart/tests/standalone/vmservice/isolate_echo_test.dart (working copy)
|
| @@ -9,7 +9,7 @@
|
|
|
| class EchoRequestTest extends VmServiceRequestHelper {
|
| EchoRequestTest(port, id) :
|
| - super('http://127.0.0.1:$port/isolates/$id/_echo/foo/bar?a=b&k=&d=e&z=w');
|
| + super('http://127.0.0.1:$port/$id/_echo/foo/bar?a=b&k=&d=e&z=w');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('message', reply['type']);
|
| @@ -36,7 +36,7 @@
|
| class IsolateListTest extends VmServiceRequestHelper {
|
| IsolateListTest(port) : super('http://127.0.0.1:$port/isolates');
|
|
|
| - int _isolateId;
|
| + String _isolateId;
|
| onRequestCompleted(Map reply) {
|
| IsolateListTester tester = new IsolateListTester(reply);
|
| tester.checkIsolateCount(1);
|
|
|