From 2851fc71049063a0332c5078b74162959932ba27 Mon Sep 17 00:00:00 2001 From: lmajano Date: Mon, 9 Sep 2024 19:59:35 +0000 Subject: [PATCH] Apply cfformat changes --- commands/testbox/run.cfc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/testbox/run.cfc b/commands/testbox/run.cfc index 880a4a1..dad75dc 100644 --- a/commands/testbox/run.cfc +++ b/commands/testbox/run.cfc @@ -434,8 +434,8 @@ component { */ private function ensureTestBox( boolean testboxUseLocal = true ){ // Where it should go in the module installed locally - var testBoxPath = variables.moduleConfig.path & "/testbox"; - var modulePath = variables.moduleConfig.path; + var testBoxPath = variables.moduleConfig.path & "/testbox"; + var modulePath = variables.moduleConfig.path; var serverDetails = variables.serverService.resolveServerDetails( {} ); var serverInfo = serverDetails.serverInfo; @@ -443,7 +443,7 @@ component { if ( arguments.testboxUseLocal ) { // Check if we have a local version var localTestBoxPath = resolvePath( "testbox", serverInfo.webroot ); - if( directoryExists( localTestBoxPath ) ){ + if ( directoryExists( localTestBoxPath ) ) { testBoxPath = localTestBoxPath; } }