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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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_strong/async/run_zoned4_test.dart
diff --git a/tests/lib_strong/async/run_zoned4_test.dart b/tests/lib_strong/async/run_zoned4_test.dart
index a5336b25ca4762c5b691c53e122dd5e501265912..9df955e201ac1ef5f5a5367f922ff5d9b3c2d261 100644
--- a/tests/lib_strong/async/run_zoned4_test.dart
+++ b/tests/lib_strong/async/run_zoned4_test.dart
@@ -8,7 +8,9 @@ import 'dart:async';
main() {
// Make sure `runZoned` returns the result of a synchronous call when an
// error handler is defined.
- Expect.equals(499,
- runZoned(() => 499,
- onError: (e) { throw "Unexpected"; }));
+ Expect.equals(
+ 499,
+ runZoned(() => 499, onError: (e) {
+ throw "Unexpected";
+ }));
}

Powered by Google App Engine
This is Rietveld 408576698