| 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 369616b62fcc422e0ceae7c0d634b9d591a5265a..4831b61dc03b4d0cf742072bddb9c362f57cf6a5 100644
|
| --- a/tests/standalone/vmservice/isolate_function_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_function_test.dart
|
| @@ -10,17 +10,17 @@ import 'package:expect/expect.dart';
|
|
|
| class MethodTest extends VmServiceRequestHelper {
|
| MethodTest(port, id, functionId) :
|
| - super('http://127.0.0.1:$port/isolates/$id/functions/$functionId');
|
| + super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
| - Expect.equals('C.c', reply['name']);
|
| + Expect.equals('C.c', reply['user_name']);
|
| Expect.equals(false, reply['is_static']);
|
| }
|
| }
|
|
|
| class FunctionTest extends VmServiceRequestHelper {
|
| FunctionTest(port, id, functionId) :
|
| - super('http://127.0.0.1:$port/isolates/$id/functions/$functionId');
|
| + super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
|
|
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
|
|