Index: tests/corelib/double_round2_test.dart |
diff --git a/tests/corelib/double_round2_test.dart b/tests/corelib/double_round2_test.dart |
index 2135191be5bcff4f34665d8866b68536ccd39651..702a81f2f00c1fadcb7b7b39d8642e4d9d534854 100644 |
--- a/tests/corelib/double_round2_test.dart |
+++ b/tests/corelib/double_round2_test.dart |
@@ -6,7 +6,7 @@ import 'package:expect/expect.dart'; |
main() { |
Expect.throws(() => double.INFINITY.round(), (e) => e is UnsupportedError); |
- Expect.throws(() => double.NEGATIVE_INFINITY.round(), |
- (e) => e is UnsupportedError); |
+ Expect.throws( |
+ () => double.NEGATIVE_INFINITY.round(), (e) => e is UnsupportedError); |
Expect.throws(() => double.NAN.round(), (e) => e is UnsupportedError); |
} |