aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/array-functions-prototype-misc.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/array-functions-prototype-misc.js')
-rw-r--r--deps/v8/test/mjsunit/array-functions-prototype-misc.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/array-functions-prototype-misc.js b/deps/v8/test/mjsunit/array-functions-prototype-misc.js
index 0543c323b6..74dc9a6be0 100644
--- a/deps/v8/test/mjsunit/array-functions-prototype-misc.js
+++ b/deps/v8/test/mjsunit/array-functions-prototype-misc.js
@@ -31,7 +31,7 @@
* should work on other objects too, so we test that too.
*/
-var LARGE = 40000000;
+var LARGE = 4000000;
var VERYLARGE = 4000000000;
// Nicer for firefox 1.5. Unless you uncomment the following two lines,
@@ -276,7 +276,7 @@ for (var i = 0; i < a.length; i += 1000) {
}
// Take something near the end of the array.
-for (var i = 0; i < 100; i++) {
+for (var i = 0; i < 10; i++) {
var top = a.splice(LARGE, 5);
assertEquals(5, top.length);
assertEquals(LARGE, top[0]);