Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Unified Diff: runtime/observatory/test/echo_test.dart

Issue 892913003: Rename the get* methods in preparation for removing them. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one more test Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/test/code_test.dart ('k') | runtime/observatory/test/functions_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
},
« no previous file with comments | « runtime/observatory/test/code_test.dart ('k') | runtime/observatory/test/functions_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698