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

Unified Diff: tests/lib/async/catch_errors16_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/catch_errors16_test.dart
diff --git a/tests/lib/async/catch_errors16_test.dart b/tests/lib/async/catch_errors16_test.dart
index 89f18a4626cd28f866a3975041c617c0f17f7582..40a2c63f37f6a9695c1879cd2ca6c5dd8333bd5f 100644
--- a/tests/lib/async/catch_errors16_test.dart
+++ b/tests/lib/async/catch_errors16_test.dart
@@ -17,18 +17,21 @@ main() {
// the nested `catchError` won't see the error.
catchErrors(() {
stream = stream.map((x) => x + 100);
- }).listen((x) { events.add(x); });
+ }).listen((x) {
+ events.add(x);
+ });
stream
- .transform(new StreamTransformer.fromHandlers(
- handleError: (e, st, sink) { sink.add("error $e"); }))
- .listen((x) { events.add("stream $x"); },
- onDone: () {
- Expect.listEquals(["stream 101",
- "stream error 2",
- ],
- events);
- asyncEnd();
- });
+ .transform(new StreamTransformer.fromHandlers(handleError: (e, st, sink) {
+ sink.add("error $e");
+ })).listen((x) {
+ events.add("stream $x");
+ }, onDone: () {
+ Expect.listEquals([
+ "stream 101",
+ "stream error 2",
+ ], events);
+ asyncEnd();
+ });
controller.add(1);
controller.addError(2);
controller.close();

Powered by Google App Engine
This is Rietveld 408576698