| Index: tests/standalone/vmservice/isolate_function_test.dart
|
| diff --git a/tests/standalone/vmservice/isolate_function_test.dart b/tests/standalone/vmservice/isolate_function_test.dart
|
| index f2fccbe00f2c5501f7fe6ac9364bbd125e248268..28da110c548a77a1d1cbddaf24709e1848c28753 100644
|
| --- a/tests/standalone/vmservice/isolate_function_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_function_test.dart
|
| @@ -33,8 +33,8 @@ class StackTraceTest extends VmServiceRequestHelper {
|
| StackTraceTest(port, id) :
|
| 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 StackTraceTest extends VmServiceRequestHelper {
|
| 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);
|
|
|