Clean up some lint problems in specs

This commit is contained in:
Tom Payne
2012-09-27 12:32:15 +02:00
parent c908e88dce
commit b7def4c8c4
4 changed files with 16 additions and 11 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ describe('ol.TileRange', function() {
var tileCoords = [];
tileRange.forEachTileCoord(5, function(tileCoord) {
tileCoords.push(new ol.TileCoord(tileCoord.z, tileCoord.x, tileCoord.y));
tileCoords.push(
new ol.TileCoord(tileCoord.z, tileCoord.x, tileCoord.y));
});
expect(tileCoords.length).toEqual(4);