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

Unified Diff: runtime/observatory/tests/service/steal_breakpoint_test.dart

Issue 1133733005: Use words please. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: also rename service rpc Created 5 years, 7 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
Index: runtime/observatory/tests/service/steal_breakpoint_test.dart
diff --git a/runtime/observatory/tests/service/steal_breakpoint_test.dart b/runtime/observatory/tests/service/steal_breakpoint_test.dart
index 1a2920aa7b9aea510a275d8a541b891d0e4ddbb2..702bf93318d08733d773c91bb21b65a8f3ddeacb 100644
--- a/runtime/observatory/tests/service/steal_breakpoint_test.dart
+++ b/runtime/observatory/tests/service/steal_breakpoint_test.dart
@@ -25,7 +25,7 @@ var tests = [
// Add a breakpoint and wait for it to be reached.
(Isolate isolate) async {
- await isolate.rootLib.load();
+ await isolate.rootLibrary.load();
// Set up a listener to wait for breakpoint events.
Completer completer = new Completer();
@@ -39,7 +39,7 @@ var tests = [
});
// Add the breakpoint.
- var script = isolate.rootLib.scripts[0];
+ var script = isolate.rootLibrary.scripts[0];
var result = await isolate.addBreakpoint(script, 14);
expect(result is Breakpoint, isTrue);

Powered by Google App Engine
This is Rietveld 408576698