| Index: tests/corelib/error_stack_trace2_test.dart
|
| diff --git a/tests/corelib/error_stack_trace2_test.dart b/tests/corelib/error_stack_trace2_test.dart
|
| index e430b84fa095f002ec86fc513592a6ddb1819c1d..24c03050ddbc21aa5795b85cf0a99a14ed617915 100644
|
| --- a/tests/corelib/error_stack_trace2_test.dart
|
| +++ b/tests/corelib/error_stack_trace2_test.dart
|
| @@ -19,11 +19,11 @@ main() {
|
| bool hasThrown = false;
|
| try {
|
| cyclicStatic + 1;
|
| - } catch(e2) {
|
| + } catch (e2) {
|
| var e = e2;
|
| hasThrown = true;
|
| - Expect.isTrue(e.stackTrace is StackTrace,
|
| - "$e doesn't have a non-null stack trace");
|
| + Expect.isTrue(
|
| + e.stackTrace is StackTrace, "$e doesn't have a non-null stack trace");
|
| }
|
| Expect.isTrue(hasThrown);
|
| }
|
|
|