| 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 bcf85b274b6543c0b144695a8efad13bd3db5240..15312299987f282ccdb78492b477d479c478986d 100644
|
| --- a/tests/standalone/vmservice/isolate_function_test.dart
|
| +++ b/tests/standalone/vmservice/isolate_function_test.dart
|
| @@ -14,7 +14,7 @@ class MethodTest extends VmServiceRequestHelper {
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
| Expect.equals('c', reply['name']);
|
| - Expect.equals(false, reply['is_static']);
|
| + Expect.equals(false, reply['static']);
|
| }
|
| }
|
|
|
| @@ -25,7 +25,7 @@ class FunctionTest extends VmServiceRequestHelper {
|
| onRequestCompleted(Map reply) {
|
| Expect.equals('Function', reply['type']);
|
| Expect.equals('a', reply['name']);
|
| - Expect.equals(true, reply['is_static']);
|
| + Expect.equals(true, reply['static']);
|
| }
|
| }
|
|
|
|
|