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

Unified Diff: tests/lib/async/intercept_schedule_microtask1_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/async/intercept_schedule_microtask1_test.dart
diff --git a/tests/lib/async/intercept_schedule_microtask1_test.dart b/tests/lib/async/intercept_schedule_microtask1_test.dart
index 15f8a0cb3c9aad4ba7a99158070851cf7e7f695b..d4b38977c59f17068209a0aef221961f500993a3 100644
--- a/tests/lib/async/intercept_schedule_microtask1_test.dart
+++ b/tests/lib/async/intercept_schedule_microtask1_test.dart
@@ -8,9 +8,8 @@ import 'catch_errors.dart';
main() {
// Test that runZoned returns the result of executing the body.
- var result = runZonedScheduleMicrotask(() => 499,
- onScheduleMicrotask: (f) {
- Expect.fail("Unexpected invocation.");
- });
+ var result = runZonedScheduleMicrotask(() => 499, onScheduleMicrotask: (f) {
+ Expect.fail("Unexpected invocation.");
+ });
Expect.equals(499, result);
}

Powered by Google App Engine
This is Rietveld 408576698