| Index: tests/language_strong/double_int_to_string_test.dart | 
| diff --git a/tests/language_strong/double_int_to_string_test.dart b/tests/language_strong/double_int_to_string_test.dart | 
| index 7ba8e27e3f1ff0eb4a8be2dbf92d4ca192997e4d..04c7ef7b8d9e90c9f323c83e6632a60fcd6e372a 100644 | 
| --- a/tests/language_strong/double_int_to_string_test.dart | 
| +++ b/tests/language_strong/double_int_to_string_test.dart | 
| @@ -9,12 +9,12 @@ main() { | 
| Expect.equals("0.0", (0.0).toString()); | 
| Expect.equals("9.0", (9.0).toString()); | 
| Expect.equals("90.0", (90.0).toString()); | 
| -  Expect.equals("111111111111111110000.0", | 
| -                (111111111111111111111.0).toString()); | 
| +  Expect.equals( | 
| +      "111111111111111110000.0", (111111111111111111111.0).toString()); | 
| Expect.equals("-9.0", (-9.0).toString()); | 
| Expect.equals("-90.0", (-90.0).toString()); | 
| -  Expect.equals("-111111111111111110000.0", | 
| -                (-111111111111111111111.0).toString()); | 
| +  Expect.equals( | 
| +      "-111111111111111110000.0", (-111111111111111111111.0).toString()); | 
| Expect.equals("1000.0", (1000.0).toString()); | 
| Expect.equals("1000000000000000100.0", (1000000000000000128.0).toString()); | 
| } | 
|  |