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

Unified Diff: tests/lib/async/run_zoned4_test.dart

Issue 23875032: Expose Zones. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Mark stack trace test as failing. Created 7 years, 3 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: tests/lib/async/run_zoned4_test.dart
diff --git a/tests/lib/async/run_zoned4_test.dart b/tests/lib/async/run_zoned4_test.dart
index ac96b65a493a3453a1adb10e5d5d1b176bf1a464..a5336b25ca4762c5b691c53e122dd5e501265912 100644
--- a/tests/lib/async/run_zoned4_test.dart
+++ b/tests/lib/async/run_zoned4_test.dart
@@ -9,6 +9,6 @@ main() {
// Make sure `runZoned` returns the result of a synchronous call when an
// error handler is defined.
Expect.equals(499,
- runZonedExperimental(() => 499,
- onError: (e) { throw "Unexpected"; }));
+ runZoned(() => 499,
+ onError: (e) { throw "Unexpected"; }));
}

Powered by Google App Engine
This is Rietveld 408576698