| Index: tests/corelib_strong/double_truncate2_test.dart | 
| diff --git a/tests/corelib_strong/double_truncate2_test.dart b/tests/corelib_strong/double_truncate2_test.dart | 
| index 675980afe2281e7a45ce130740b3f6f208ac15ef..633debd61a467977caa53c666b35561c8b45eff2 100644 | 
| --- a/tests/corelib_strong/double_truncate2_test.dart | 
| +++ b/tests/corelib_strong/double_truncate2_test.dart | 
| @@ -6,7 +6,7 @@ import 'package:expect/expect.dart'; | 
|  | 
| main() { | 
| Expect.throws(() => double.INFINITY.truncate(), (e) => e is UnsupportedError); | 
| -  Expect.throws(() => double.NEGATIVE_INFINITY.truncate(), | 
| -                (e) => e is UnsupportedError); | 
| +  Expect.throws( | 
| +      () => double.NEGATIVE_INFINITY.truncate(), (e) => e is UnsupportedError); | 
| Expect.throws(() => double.NAN.truncate(), (e) => e is UnsupportedError); | 
| } | 
|  |