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

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

Issue 979823003: Major rework of vm service events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/debugging_test.dart ('k') | runtime/observatory/test/gc_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/test/eval_test.dart
diff --git a/runtime/observatory/test/eval_test.dart b/runtime/observatory/test/eval_test.dart
index 7c5d77cce0ad4750b5a460bd00c78f9441deef66..8355f7e0d5e68817d409c819bf375a1f61bf5157 100644
--- a/runtime/observatory/test/eval_test.dart
+++ b/runtime/observatory/test/eval_test.dart
@@ -35,7 +35,7 @@ var tests = [
Completer completer = new Completer();
List events = [];
isolate.vm.events.stream.listen((ServiceEvent event) {
- if (event.eventType == 'BreakpointReached') {
+ if (event.eventType == ServiceEvent.kPauseBreakpoint) {
print('Breakpoint reached');
completer.complete();
}
« no previous file with comments | « runtime/observatory/test/debugging_test.dart ('k') | runtime/observatory/test/gc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698