Index: tests/lib_strong/async/stack_trace21_test.dart |
diff --git a/tests/lib_strong/async/stack_trace21_test.dart b/tests/lib_strong/async/stack_trace21_test.dart |
index ecb4669dfe8ccf8c549d6748663dab1bf083fcb2..b859ba8555b2beb317a96d21b8ff384149237292 100644 |
--- a/tests/lib_strong/async/stack_trace21_test.dart |
+++ b/tests/lib_strong/async/stack_trace21_test.dart |
@@ -22,13 +22,12 @@ main() { |
controller.close(); |
}); |
asyncStart(); |
- controller.stream |
- .listen((_) { throw "should never be reached"; }, |
- onError: (e, st) { |
- Expect.equals("error", e); |
- Expect.identical(trace, st); |
- }, |
- onDone: () { |
- asyncEnd(); |
- }); |
+ controller.stream.listen((_) { |
+ throw "should never be reached"; |
+ }, onError: (e, st) { |
+ Expect.equals("error", e); |
+ Expect.identical(trace, st); |
+ }, onDone: () { |
+ asyncEnd(); |
+ }); |
} |