From 9e0cba352b884f3b777052b33dcf8105ee98ea4f Mon Sep 17 00:00:00 2001 From: IagoLast Date: Tue, 20 Feb 2018 10:52:34 +0100 Subject: [PATCH] Fix lint errors --- test/acceptance/test-cases/hide-attribution.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/acceptance/test-cases/hide-attribution.js b/test/acceptance/test-cases/hide-attribution.js index 214dccab2..dcf195465 100644 --- a/test/acceptance/test-cases/hide-attribution.js +++ b/test/acceptance/test-cases/hide-attribution.js @@ -1,6 +1,6 @@ // This script hides the map attribution when served locally improving screenshot testing precission. if (document.URL.includes('file')) { const styleElement = document.createElement('style'); - styleElement.innerText = `.mapboxgl-ctrl.mapboxgl-ctrl-attrib { display: none; }`; + styleElement.innerText = '.mapboxgl-ctrl.mapboxgl-ctrl-attrib { display: none; }'; document.head.appendChild(styleElement); }