From e475c04eaa956c3a5910de4a332c113135c8b8c1 Mon Sep 17 00:00:00 2001 From: Mattias Bengtsson Date: Wed, 12 Dec 2012 00:01:37 +0100 Subject: [PATCH] Add a missing semi colon and make one line < 80 chars --- spec/suites/map/MapSpec.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spec/suites/map/MapSpec.js b/spec/suites/map/MapSpec.js index f962dd1a..74eff4ee 100644 --- a/spec/suites/map/MapSpec.js +++ b/spec/suites/map/MapSpec.js @@ -10,7 +10,7 @@ describe("Map", function () { map.setView([0, 0], 1); expect(spy).toHaveBeenCalled(); - }) + }); }); describe("when the map has already been loaded", function () { @@ -27,7 +27,8 @@ describe("Map", function () { }); describe("#getBounds", function () { - it("is safe to call from within a moveend callback during initial load (#1027)", function () { + it("is safe to call from within a moveend callback during initial " + + "load (#1027)", function () { var c = document.createElement('div'), map = L.map(c);