| Index: tests/standalone/vmservice/isolate_bad_class_test.dart
|
| diff --git a/tests/standalone/vmservice/isolate_bad_class_test.dart b/tests/standalone/vmservice/isolate_bad_class_test.dart
|
| index 1b6c0ca5114d3ca4a8f896d0e6c0077f69a4cd07..cacbe6491536ea1595dc7661aaaf16807570bb18 100644
|
| --- a/tests/standalone/vmservice/isolate_bad_class_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_bad_class_test.dart
|
| @@ -10,16 +10,16 @@ import 'package:expect/expect.dart';
|
|
|
| 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']);
|
|
|