From bb170ee208ea188a4d08791712c2cfdf35a79c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Mon, 19 Mar 2018 19:27:38 +0100 Subject: [PATCH] Please, jshint --- test/acceptance/ported/support/test_client.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/acceptance/ported/support/test_client.js b/test/acceptance/ported/support/test_client.js index f110079a..ab4576b6 100644 --- a/test/acceptance/ported/support/test_client.js +++ b/test/acceptance/ported/support/test_client.js @@ -456,17 +456,17 @@ function withLayergroup(layergroupConfig, options, callback) { const signerTpl = function ({ signer }) { return `${signer ? `:${signer}@` : ''}`; - } + }; const cacheTpl = function ({ cache_buster, cacheBuster }) { return `${cache_buster ? `:${cache_buster}` : `:${cacheBuster}`}`; - } + }; const urlTpl = function ({layergroupid, cache_buster = null, tile }) { const { signer, token , cacheBuster } = LayergroupToken.parse(layergroupid); - const base = '/database/windshaft_test/layergroup/' + const base = '/database/windshaft_test/layergroup/'; return `${base}${signerTpl({signer})}${token}${cacheTpl({cache_buster, cacheBuster})}${tile}`; - } + }; const finalUrl = urlTpl({ layergroupid, cache_buster: options.cache_buster, tile: layergroupUrl });