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

@@ -28,7 +28,7 @@ describe('ol.renderer.canvas.Layer', function() {
};
renderer.getImageTransform = function() {
return goog.vec.Mat4.createNumberIdentity();
}
};
ol.renderer.Map.prototype.calculateMatrices2D(frameState);
var layerState = layer.getLayerState();
var context = {
@@ -41,7 +41,7 @@ describe('ol.renderer.canvas.Layer', function() {
lineTo: sinon.spy(),
clip: sinon.spy(),
drawImage: sinon.spy()
}
};
renderer.composeFrame(frameState, layerState, context);
expect(context.save.callCount).to.be(1);
expect(context.translate.callCount).to.be(0);