Curly brace spacing

This commit is contained in:
Tim Schaub
2016-01-02 19:14:58 -07:00
parent 9ae748408a
commit f0fc4d4e73
2 changed files with 12 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ describe('ol.source.WMTS', function() {
function() {
var options = ol.source.WMTS.optionsFromCapabilities(
capabilities,
{ layer: 'BlueMarbleNextGeneration', matrixSet: 'google3857' });
{layer: 'BlueMarbleNextGeneration', matrixSet: 'google3857'});
expect(options.urls).to.be.an('array');
expect(options.urls).to.have.length(1);
@@ -50,8 +50,8 @@ describe('ol.source.WMTS', function() {
function() {
var options = ol.source.WMTS.optionsFromCapabilities(
capabilities,
{ layer: 'BlueMarbleNextGeneration', matrixSet: 'google3857',
requestEncoding: 'REST' });
{layer: 'BlueMarbleNextGeneration', matrixSet: 'google3857',
requestEncoding: 'REST'});
expect(options.urls).to.be.an('array');
expect(options.urls).to.have.length(1);
@@ -80,8 +80,8 @@ describe('ol.source.WMTS', function() {
it('can find a MatrixSet by SRS identifier', function() {
var options = ol.source.WMTS.optionsFromCapabilities(
capabilities,
{ layer: 'BlueMarbleNextGeneration', projection: 'EPSG:3857',
requestEncoding: 'REST' });
{layer: 'BlueMarbleNextGeneration', projection: 'EPSG:3857',
requestEncoding: 'REST'});
expect(options.matrixSet).to.be.eql('google3857');
});