From c2de4420ce32782edf639fff3baa33aab26e8982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Thu, 8 Apr 2021 09:40:27 +0200 Subject: [PATCH] fix: wrong env variable name --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index 92cd657d..0d303791 100644 --- a/test/index.js +++ b/test/index.js @@ -9,7 +9,7 @@ if (!process.env.NODE_ENV) { process.exit(1); } let configFileName = process.env.NODE_ENV; -if (process.env.CARTO_WINDSHAFT_ENV_BASED_CONF) { +if (process.env.CARTO_SQL_API_ENV_BASED_CONF) { // we override the file with the one with env vars configFileName = 'config'; }