| Index: runtime/observatory/test/echo_test.dart
|
| diff --git a/runtime/observatory/test/echo_test.dart b/runtime/observatory/test/echo_test.dart
|
| index f1b7cc01745e1fc66b63b75c2e02081a09c318f6..7c7c512a73f9c2bf8349dd7b8595339304850c20 100644
|
| --- a/runtime/observatory/test/echo_test.dart
|
| +++ b/runtime/observatory/test/echo_test.dart
|
| @@ -10,14 +10,14 @@ import 'test_helper.dart';
|
| var tests = [
|
|
|
| (Isolate isolate) =>
|
| - isolate.vm.get('_echo').then((result) {
|
| + isolate.vm.getDeprecated('_echo').then((result) {
|
| expect(result['type'], equals("message"));
|
| expect(result['id'], equals("_echo"));
|
| expect(result.owner, equals(isolate.vm));
|
| }),
|
|
|
| (Isolate isolate) =>
|
| - isolate.get('_echo').then((result) {
|
| + isolate.getDeprecated('_echo').then((result) {
|
| expect(result['type'], equals("message"));
|
| expect(result['id'], equals("_echo"));
|
| expect(result.owner, equals(isolate));
|
| @@ -34,7 +34,7 @@ var tests = [
|
| completer.complete();
|
| }
|
| });
|
| - isolate.get('_echo/event');
|
| + isolate.getDeprecated('_echo/event');
|
| return completer.future;
|
| },
|
|
|
|
|