From b23bd6e2a3e77a9d8f946def786fc4848ccc13c7 Mon Sep 17 00:00:00 2001 From: Ved misra <47312748+misraved@users.noreply.github.com> Date: Mon, 13 Mar 2023 21:58:04 +0530 Subject: [PATCH] Fix tint.js to remove the unused `variablesTmp` variable (#577) --- azure-test/tint.js | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-test/tint.js b/azure-test/tint.js index 96cfa033..378c29ef 100755 --- a/azure-test/tint.js +++ b/azure-test/tint.js @@ -384,7 +384,6 @@ const _runGraphqlQuery = function (test, query) { return new Promise((resolve, reject) => { try { var queryTmp = _renderToTmp(test, query.query); - var variablesTmp = _renderToTmp(test, query.variables, {}); var expectedTmp = _renderToTmp(test, query.expected); } catch (e) { console.log(chalk.red(`Template Error: ${e.sourcePath}`));