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

Unified Diff: runtime/observatory/test/source_location_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/isolate_lifecycle_test.dart ('k') | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/test/source_location_test.dart
diff --git a/runtime/observatory/test/source_location_test.dart b/runtime/observatory/test/source_location_test.dart
index 5c24d3261ee21d1bae2e88116243ff5b70676c26..0cdd07cd335857dd38a257808a6d4c1f0592945d 100644
--- a/runtime/observatory/test/source_location_test.dart
+++ b/runtime/observatory/test/source_location_test.dart
@@ -54,7 +54,7 @@ var tests = [
// Listen for breakpoint event.
Completer completer = new Completer();
isolate.vm.events.stream.listen((ServiceEvent event) {
- if (event.eventType == 'BreakpointReached') {
+ if (event.eventType == ServiceEvent.kPauseBreakpoint) {
completer.complete();
}
});
« no previous file with comments | « runtime/observatory/test/isolate_lifecycle_test.dart ('k') | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698