| Index: tests/corelib/double_floor2_test.dart
|
| diff --git a/tests/corelib/double_floor2_test.dart b/tests/corelib/double_floor2_test.dart
|
| index 417d4650ee67f5663c6ac10df09d683d95488587..a83808838b4fef46b0a9f81e8a22c738090d622d 100644
|
| --- a/tests/corelib/double_floor2_test.dart
|
| +++ b/tests/corelib/double_floor2_test.dart
|
| @@ -6,7 +6,7 @@ import 'package:expect/expect.dart';
|
|
|
| main() {
|
| Expect.throws(() => double.INFINITY.floor(), (e) => e is UnsupportedError);
|
| - Expect.throws(() => double.NEGATIVE_INFINITY.floor(),
|
| - (e) => e is UnsupportedError);
|
| + Expect.throws(
|
| + () => double.NEGATIVE_INFINITY.floor(), (e) => e is UnsupportedError);
|
| Expect.throws(() => double.NAN.floor(), (e) => e is UnsupportedError);
|
| }
|
|
|