| Index: dart/tests/standalone/vmservice/isolate_function_test.dart
|
| ===================================================================
|
| --- dart/tests/standalone/vmservice/isolate_function_test.dart (revision 31530)
|
| +++ dart/tests/standalone/vmservice/isolate_function_test.dart (working copy)
|
| @@ -10,7 +10,7 @@
|
|
|
| class MethodTest extends VmServiceRequestHelper {
|
| MethodTest(port, id, functionId) :
|
| - super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
|
| + super('http://127.0.0.1:$port/$id/$functionId');
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
| Expect.equals('C.c', reply['user_name']);
|
| @@ -20,7 +20,7 @@
|
|
|
| class FunctionTest extends VmServiceRequestHelper {
|
| FunctionTest(port, id, functionId) :
|
| - super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
|
| + super('http://127.0.0.1:$port/$id/$functionId');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
| @@ -31,10 +31,10 @@
|
|
|
| class StackTraceTest extends VmServiceRequestHelper {
|
| StackTraceTest(port, id) :
|
| - super('http://127.0.0.1:$port/isolates/$id/stacktrace');
|
| + super('http://127.0.0.1:$port/$id/stacktrace');
|
|
|
| - int _aId;
|
| - int _cId;
|
| + String _aId;
|
| + String _cId;
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('StackTrace', reply['type']);
|
| List members = reply['members'];
|
| @@ -48,7 +48,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(2);
|
|
|