Index: tests/lib/async/catch_errors11_test.dart |
diff --git a/tests/lib/async/catch_errors11_test.dart b/tests/lib/async/catch_errors11_test.dart |
index c2d34bc8a7fcaf664205a43c8e3eddf95dfe8869..67bb9db248ddb3b8eae2fa1976a2428c2b4b6ad6 100644 |
--- a/tests/lib/async/catch_errors11_test.dart |
+++ b/tests/lib/async/catch_errors11_test.dart |
@@ -21,20 +21,20 @@ main() { |
throw "timer error"; |
}); |
}).listen((x) { |
- events.add(x); |
- }, |
- onDone: () { Expect.fail("Unexpected callback"); }); |
+ events.add(x); |
+ }, onDone: () { |
+ Expect.fail("Unexpected callback"); |
+ }); |
done.future.whenComplete(() { |
// Give the handler time to execute. |
Timer.run(() { |
Expect.listEquals([ |
- "catch error entry", |
- "main exit", |
- "future error", |
- "timer error", |
- ], |
- events); |
+ "catch error entry", |
+ "main exit", |
+ "future error", |
+ "timer error", |
+ ], events); |
asyncEnd(); |
}); |
}); |