Add missing semicolon

This commit is contained in:
Frederic Junod
2016-06-09 15:32:58 +02:00
parent 08f8cd0f16
commit 4bf1f56405
33 changed files with 56 additions and 56 deletions

View File

@@ -111,7 +111,7 @@ describe('ol.renderer.canvas.VectorTileLayer', function() {
var tile;
tileCallback = function(t) {
tile = t;
}
};
map.renderSync();
expect(tile.getProjection()).to.equal(ol.proj.get('EPSG:3857'));
expect(feature1.getGeometry().getCoordinates()).to.eql(
@@ -124,7 +124,7 @@ describe('ol.renderer.canvas.VectorTileLayer', function() {
tileCallback = function(t) {
t.setProjection(proj);
tile = t;
}
};
map.renderSync();
expect(tile.getProjection()).to.equal(proj);
expect(feature1.getGeometry().getCoordinates()).to.eql([1, -1]);