| Index: tests/standalone/vmservice/isolate_bad_object_test.dart
|
| diff --git a/tests/standalone/vmservice/isolate_bad_object_test.dart b/tests/standalone/vmservice/isolate_bad_object_test.dart
|
| index 314c6081146188f220b43a271dd342838706d64a..0970c3e58fa33db6f9b182e76911c5f2088c4efc 100644
|
| --- a/tests/standalone/vmservice/isolate_bad_object_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_bad_object_test.dart
|
| @@ -10,7 +10,7 @@ import 'package:expect/expect.dart';
|
|
|
| class NullCollectionTest extends VmServiceRequestHelper {
|
| NullCollectionTest(port, id) :
|
| - super('http://127.0.0.1:$port/isolates/$id/objects/50');
|
| + super('http://127.0.0.1:$port/$id/objects/50');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('null', reply['type']);
|
| @@ -19,7 +19,7 @@ class NullCollectionTest extends VmServiceRequestHelper {
|
|
|
| class BadCollectionTest extends VmServiceRequestHelper {
|
| BadCollectionTest(port, id) :
|
| - super('http://127.0.0.1:$port/isolates/$id/objects');
|
| + super('http://127.0.0.1:$port/$id/objects');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Error', reply['type']);
|
|
|