Skip to content

Commit 112aad5

Browse files
committed
Lowered while loop test case to default value
1 parent 18f8974 commit 112aad5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/src/features/for_loop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ QUnit.test( "for_loop (CPU)", function( assert ) {
4545
var i = 0;
4646

4747
//10000000 or 10 million is the approx upper limit on a chrome + GTX 780
48-
while(i<1000) {
48+
while(i<100) {
4949
x = x + 1.0;
5050
++i;
5151
}

0 commit comments

Comments
 (0)