From 94565016b1cfdd75d3ed86f1032b5bf02a986608 Mon Sep 17 00:00:00 2001 From: Cahir O'Doherty <41006337+cahirodoherty-learningpool@users.noreply.github.com> Date: Fri, 9 Aug 2024 09:23:24 +0100 Subject: [PATCH] Fix: Remove the forced lowercase in test params to permit camelcase directory name to be processed correctly (#3589) --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 91ceefee3..fa33ce57d 100644 --- a/test.js +++ b/test.js @@ -206,7 +206,7 @@ const runTest = async () => { const isCommandNotFound = !command; // Read the input for passed arguments that arent command names - passedArgs = passedArgs.trim().replaceAll('--', '').toLowerCase().split(' ').filter(name => isCommandNotFound || name !== commandName); + passedArgs = passedArgs.trim().replaceAll('--', '').split(' ').filter(name => isCommandNotFound || name !== commandName); // Update argumentValues array for later use while checking if the command is valid const paramsRecognised = passedArgs.every(passedArg => {