Chromium Code Reviews| Index: tests/lib/math/math_test.dart |
| diff --git a/tests/lib/math/math_test.dart b/tests/lib/math/math_test.dart |
| index b911e0a5157d1f305cab9c099c878d8068538703..8edd0635748bf08667401bfdcbe929341ef54c89 100644 |
| --- a/tests/lib/math/math_test.dart |
| +++ b/tests/lib/math/math_test.dart |
| @@ -132,8 +132,8 @@ class MathTest { |
| } |
| static void testExp() { |
| + final double EPSILON = 1e-15; |
|
Lasse Reichstein Nielsen
2014/08/20 12:17:03
Unnecessary change.
srawlins
2014/08/25 05:43:54
Done.
|
| checkVeryClose(E, exp(1.0)); |
| - final EPSILON = 1e-15; |
| checkClose(10.0, exp(LN10), EPSILON); |
| checkClose(2.0, exp(LN2), EPSILON); |
| } |