Fix tests so they all pass in IE9

This commit is contained in:
Andreas Hocevar
2016-02-23 18:21:22 +01:00
parent 806588edc6
commit c2d4bf113d
2 changed files with 2 additions and 2 deletions

View File

@@ -386,7 +386,7 @@ describe('ol.array', function() {
});
it('extends an array in place with a big array', function() {
var a = [];
var i = 500000; // original test has 1.000.000, but that was too slow
var i = 250000; // original test has 1.000.000, but that was too slow
var bigArray = Array(i);
while (i--) {
bigArray[i] = i;