| Index: tests/language/src/ToStringAsFixedTest.dart
|
| diff --git a/tests/language/src/ToStringAsFixedTest.dart b/tests/language/src/ToStringAsFixedTest.dart
|
| index b2474b03ad8826c71b6fc031d743e1a4bf7bf859..05c38d5d1eb1206f1669117bdd0b0e24431053cc 100644
|
| --- a/tests/language/src/ToStringAsFixedTest.dart
|
| +++ b/tests/language/src/ToStringAsFixedTest.dart
|
| @@ -64,9 +64,9 @@ class ToStringAsFixedTest {
|
| Expect.equals("-0.00000006", (-0.00000006).toStringAsFixed(8));
|
| Expect.equals("-0.000000060", (-0.00000006).toStringAsFixed(9));
|
| Expect.equals("-0.0000000600", (-0.00000006).toStringAsFixed(10));
|
| - Expect.equals("-0", (-0.0).toStringAsFixed(0));
|
| - Expect.equals("-0.0", (-0.0).toStringAsFixed(1));
|
| - Expect.equals("-0.00", (-0.0).toStringAsFixed(2));
|
| + Expect.equals("0", (-0.0).toStringAsFixed(0));
|
| + Expect.equals("0.0", (-0.0).toStringAsFixed(1));
|
| + Expect.equals("0.00", (-0.0).toStringAsFixed(2));
|
|
|
| Expect.equals("1000", 1000.0.toStringAsFixed(0));
|
| Expect.equals("0", 0.00001.toStringAsFixed(0));
|
|
|