Chromium Code Reviews| Index: test/mjsunit/math-floor-of-div.js |
| diff --git a/test/mjsunit/math-floor-of-div.js b/test/mjsunit/math-floor-of-div.js |
| index c7ef289f8b036a94c199772c9de9138c7443c5f0..ea6b37b3cfb5b5c2e3ba624eb036340360766b7c 100644 |
| --- a/test/mjsunit/math-floor-of-div.js |
| +++ b/test/mjsunit/math-floor-of-div.js |
| @@ -95,7 +95,7 @@ function test_div() { |
| assertEquals(Math.floor(div(k, -21)), Math.floor(k / -21)); |
| assertEquals(Math.floor(div(k, 22)), Math.floor(k / 22)); |
| assertEquals(Math.floor(div(k, -22)), Math.floor(k / -22)); |
| - assertEquals(Math.floor(div(k, 23)), Math.floor(k / 23)); |
| + assertEquals(Math.floor(div(k, 13)), Math.floor(k / 13)); |
|
danno
2013/02/11 15:30:50
Why this change?
palfia
2013/05/09 22:50:09
This change is not needed, removed.
|
| assertEquals(Math.floor(div(k, -23)), Math.floor(k / -23)); |
| assertEquals(Math.floor(div(k, 24)), Math.floor(k / 24)); |
| assertEquals(Math.floor(div(k, -24)), Math.floor(k / -24)); |