| Index: tests/language/arithmetic_test.dart
|
| ===================================================================
|
| --- tests/language/arithmetic_test.dart (revision 19004)
|
| +++ tests/language/arithmetic_test.dart (working copy)
|
| @@ -279,6 +279,8 @@
|
| // Double.
|
| Expect.equals(3.0, (2.6).round());
|
| Expect.equals(-3.0, (-2.6).round());
|
| + Expect.equals(3.0, (2.5).round());
|
| + Expect.equals(-3.0, (-2.5).round());
|
| Expect.equals(0.0, (0.0).round());
|
| Expect.equals(0.0, (0.1).round());
|
| Expect.equals(false, (0.0).round().isNegative);
|
|
|