summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/mod.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/mod.js')
-rw-r--r--deps/v8/test/mjsunit/mod.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/mod.js b/deps/v8/test/mjsunit/mod.js
index 8ad98fa7ec..4374dcc11d 100644
--- a/deps/v8/test/mjsunit/mod.js
+++ b/deps/v8/test/mjsunit/mod.js
@@ -31,7 +31,6 @@ function foo() {
for (var j = 1; j < 100; j++) {
if (answer == i) answer = 0;
// Positive case.
- print(j + " % " + i + " = " + answer);
m = j % i;
assertEquals(answer, m, j + " % " + i);
m = j % (-i);