From d65ed79726231d93743ea5d00bc3c1b0bd00833e Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sat, 20 Jul 2024 07:50:07 +0200 Subject: [PATCH] Update FileSetAccessMode.cfc --- test/functions/FileSetAccessMode.cfc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/functions/FileSetAccessMode.cfc b/test/functions/FileSetAccessMode.cfc index d62ff9fb81..3a347457d9 100644 --- a/test/functions/FileSetAccessMode.cfc +++ b/test/functions/FileSetAccessMode.cfc @@ -9,7 +9,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { function afterAll(){ if ( directoryExists( dir ) ){ - directoryDelere( dir, true ); + directoryDelete( dir, true ); }; }; @@ -22,10 +22,9 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { arrayAppend( tests, _dir( dir, "777", "777" ) ); arrayAppend( tests, _dir( dir, "644", "644" ) ); - arrayAppend( tests, _file( dir, "777/644.txt", "644" ) ); - arrayAppend( tests, _file( dir, "777/743.txt", "743" ) ); - arrayAppend( tests, _file( dir, "777/043.txt", "043" ) ); - + arrayAppend( tests, _file( dir, "644.txt", "644" ) ); + arrayAppend( tests, _file( dir, "743.txt", "743" ) ); + arrayAppend( tests, _file( dir, "043.txt", "043" ) ); arrayAppend( tests, _file( dir, "400.txt", "400" ) ); var files = directoryList( dir, true, "query");