Skip to content

Commit

Permalink
Update FileSetAccessMode.cfc
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 20, 2024
1 parent fbe8d17 commit d65ed79
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/functions/FileSetAccessMode.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {

function afterAll(){
if ( directoryExists( dir ) ){
directoryDelere( dir, true );
directoryDelete( dir, true );
};
};

Expand All @@ -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");
Expand Down

0 comments on commit d65ed79

Please sign in to comment.