From 685f2b6f5fdbba28b563fd06861d824fb924804e Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Sun, 24 Mar 2013 16:14:04 +0100 Subject: [PATCH] Make time-sensitive test less sensitive --- test/spec/ol/map.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/ol/map.test.js b/test/spec/ol/map.test.js index e1d4ab9b90..e982c3390a 100644 --- a/test/spec/ol/map.test.js +++ b/test/spec/ol/map.test.js @@ -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); });