From 2ee1aa2c2365e0cf4404817b4d268d5ed788a653 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 12 Jan 2015 11:03:42 -0800 Subject: [PATCH] jshint --- spec/suites/geo/LatLngSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/suites/geo/LatLngSpec.js b/spec/suites/geo/LatLngSpec.js index 9da63f8e..c7de51db 100644 --- a/spec/suites/geo/LatLngSpec.js +++ b/spec/suites/geo/LatLngSpec.js @@ -112,8 +112,8 @@ describe('LatLng', function () { }); it('accepts an object with alt', function () { - expect(L.latLng({lat: 50, lng: 30, alt:100})).to.eql(new L.LatLng(50, 30, 100)); - expect(L.latLng({lat: 50, lon: 30, alt:100})).to.eql(new L.LatLng(50, 30, 100)); + expect(L.latLng({lat: 50, lng: 30, alt: 100})).to.eql(new L.LatLng(50, 30, 100)); + expect(L.latLng({lat: 50, lon: 30, alt: 100})).to.eql(new L.LatLng(50, 30, 100)); }); }); });