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

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

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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 | « tests/lib/async/run_zoned6_test.dart ('k') | tests/lib/convert/base64_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/run_zoned9_test.dart
diff --git a/tests/lib/async/run_zoned9_test.dart b/tests/lib/async/run_zoned9_test.dart
index 3d5dc80b5f161a506e6d308d9593712b4edbe07e..67e389425b24d82e1ef83cd28b9d3c9d2efcde89 100644
--- a/tests/lib/async/run_zoned9_test.dart
+++ b/tests/lib/async/run_zoned9_test.dart
@@ -13,23 +13,24 @@ main() {
bool sawInnerHandler = false;
try {
runZoned(() {
- runZoned(() { throw 0; },
- onError: (e) {
- Expect.equals(0, e);
- sawInnerHandler = true;
- throw e;
- });
+ runZoned(() {
+ throw 0;
+ }, onError: (e) {
+ Expect.equals(0, e);
+ sawInnerHandler = true;
+ throw e;
+ });
}, onError: (e) {
Expect.equals(0, e);
Expect.isTrue(sawInnerHandler);
// If we are waiting for an error, don't asyncEnd, but let it time out.
if (false) //# 01: runtime error
- asyncEnd();
+ asyncEnd();
throw e; // //# 01: continued
});
} catch (e) {
// We should never see an error here.
if (false) // //# 01: continued
- rethrow;
+ rethrow;
}
}
« no previous file with comments | « tests/lib/async/run_zoned6_test.dart ('k') | tests/lib/convert/base64_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698