[Pkg-javascript-commits] [leaflet] 247/301: fix specs after messy merge
Jonas Smedegaard
js at moszumanska.debian.org
Mon Jan 27 22:22:54 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository leaflet.
commit 977fb99b6a56ba9842ab08ddb307c393555e5ab2
Author: Vladimir Agafonkin <agafonkin at gmail.com>
Date: Wed Nov 13 21:56:48 2013 +0200
fix specs after messy merge
---
spec/suites/map/MapSpec.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/spec/suites/map/MapSpec.js b/spec/suites/map/MapSpec.js
index 7a2118d..ac33cf1 100644
--- a/spec/suites/map/MapSpec.js
+++ b/spec/suites/map/MapSpec.js
@@ -464,7 +464,7 @@ describe("Map", function () {
var spy = sinon.spy();
map.on("move", spy);
- container.style.width = (orig_width + 5) + "px";
+ container.style.width = (origWidth + 5) + "px";
map.invalidateSize();
expect(spy.called).to.be.ok();
@@ -474,7 +474,7 @@ describe("Map", function () {
var spy = sinon.spy();
map.on("moveend", spy);
- container.style.width = (orig_width + 5) + "px";
+ container.style.width = (origWidth + 5) + "px";
map.invalidateSize();
expect(spy.called).to.be.ok();
@@ -484,7 +484,7 @@ describe("Map", function () {
var spy = sinon.spy();
map.on("moveend", spy);
- container.style.width = (orig_width + 5) + "px";
+ container.style.width = (origWidth + 5) + "px";
map.invalidateSize({debounceMoveend: true});
expect(spy.called).not.to.be.ok();
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet.git
More information about the Pkg-javascript-commits
mailing list