Make time-sensitive test less sensitive

This commit is contained in:
Tom Payne
2013-03-24 16:14:04 +01:00
parent 3a4ef83e79
commit 685f2b6f5f

View File

@@ -214,7 +214,7 @@ describe('ol.Map', function() {
expect(loc.x).to.eql(destination.x);
expect(loc.y).to.eql(destination.y);
done();
}, duration + goog.async.AnimationDelay.TIMEOUT);
}, duration + 2 * goog.async.AnimationDelay.TIMEOUT);
});