| Index: dart/tests/standalone/vmservice/isolate_bad_class_test.dart
|
| ===================================================================
|
| --- dart/tests/standalone/vmservice/isolate_bad_class_test.dart (revision 31530)
|
| +++ dart/tests/standalone/vmservice/isolate_bad_class_test.dart (working copy)
|
| @@ -10,16 +10,16 @@
|
|
|
| class NullCollectionTest extends VmServiceRequestHelper {
|
| NullCollectionTest(port, id, collection) :
|
| - super('http://127.0.0.1:$port/isolates/$id/$collection/9999999');
|
| + super('http://127.0.0.1:$port/$id/$collection/9999999');
|
|
|
| onRequestCompleted(Map reply) {
|
| - Expect.equals('null', reply['type']);
|
| + Expect.equals('Error', reply['type']);
|
| }
|
| }
|
|
|
| class BadCollectionTest extends VmServiceRequestHelper {
|
| BadCollectionTest(port, id, collection) :
|
| - super('http://127.0.0.1:$port/isolates/$id/$collection');
|
| + super('http://127.0.0.1:$port/$id/$collection');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Error', reply['type']);
|
| @@ -29,7 +29,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);
|
|
|