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

@@ -149,7 +149,7 @@ describe('ol.source.Source', function() {
});
it('accepts an array with a string and an ol.Attribution', function() {
var attribution = new ol.Attribution({html: 'Dumpty'});
source.setAttributions(['Humpty', attribution])
source.setAttributions(['Humpty', attribution]);
var attributions = source.getAttributions();
expect(attributions).to.not.be(null);
expect(attributions).to.have.length(2);