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 b7c6dde commit fbe8d17
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/functions/FileSetAccessMode.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {
var tests = [];

arrayAppend( tests, _dir( dir, "755", "755" ) );
arrayAppend( tests, _dir( dir, "777", "777" ) );
arrayAppend( tests, _dir( dir, "644", "644" ) );

arrayAppend( tests, _file( dir, "755/644.txt", "644" ) );
arrayAppend( tests, _file( dir, "755/743.txt", "743" ) );
arrayAppend( tests, _file( dir, "755/043.txt", "043" ) );
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/400.txt", "400" ) );
arrayAppend( tests, _file( dir, "400.txt", "400" ) );

var files = directoryList( dir, true, "query");
var st = QueryToStruct( files, "name" );
Expand Down

0 comments on commit fbe8d17

Please sign in to comment.