From bfb6d0ca879bfe3eebc46aa4313b14d5e0631e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Thu, 31 Jan 2013 11:01:06 +0100 Subject: [PATCH] Missing var's in a test file --- test/spec/ol/source/xyz.test.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/spec/ol/source/xyz.test.js b/test/spec/ol/source/xyz.test.js index 2183623296..7ca86bbfdc 100644 --- a/test/spec/ol/source/xyz.test.js +++ b/test/spec/ol/source/xyz.test.js @@ -47,7 +47,8 @@ describe('ol.source.XYZ', function() { describe('wrap x', function() { it('returns the expected URL', function() { - tileUrl = xyzTileSource.getTileCoordUrl(new ol.TileCoord(6, -31, -23)); + var tileUrl = xyzTileSource.getTileCoordUrl( + new ol.TileCoord(6, -31, -23)); expect(tileUrl).toEqual('6/33/22'); tileUrl = xyzTileSource.getTileCoordUrl(new ol.TileCoord(6, 33, -23)); @@ -60,7 +61,8 @@ describe('ol.source.XYZ', function() { describe('crop y', function() { it('returns the expected URL', function() { - tileUrl = xyzTileSource.getTileCoordUrl(new ol.TileCoord(6, 33, -87)); + var tileUrl = xyzTileSource.getTileCoordUrl( + new ol.TileCoord(6, 33, -87)); expect(tileUrl).toBeUndefined(); tileUrl = xyzTileSource.getTileCoordUrl(new ol.TileCoord(6, 33, -23));