| Index: tests/lib/async/stack_trace04_test.dart
|
| diff --git a/tests/lib/async/stack_trace04_test.dart b/tests/lib/async/stack_trace04_test.dart
|
| index 353c7f8be412846b46b1ac7a388719759d2b30f8..ea92c535509527f32dc1fa9537897d0891543331 100644
|
| --- a/tests/lib/async/stack_trace04_test.dart
|
| +++ b/tests/lib/async/stack_trace04_test.dart
|
| @@ -18,10 +18,9 @@ main() {
|
| StackTrace trace = captureStackTrace();
|
| asyncStart();
|
| var f = new Future(() => 499);
|
| - f.then((_) => new Future.error("e", trace))
|
| - .catchError((e, st) {
|
| - Expect.equals("e", e);
|
| - Expect.identical(trace, st);
|
| - asyncEnd();
|
| - });
|
| + f.then((_) => new Future.error("e", trace)).catchError((e, st) {
|
| + Expect.equals("e", e);
|
| + Expect.identical(trace, st);
|
| + asyncEnd();
|
| + });
|
| }
|
|
|