Skip to content

Commit

Permalink
Update LDEV5034.cfc
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 27, 2024
1 parent f287ac7 commit c367b09
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/tickets/LDEV5034.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {
arrayAppend( tests, _file( dir, "743.txt", "743" ) );
arrayAppend( tests, _file( dir, "043.txt", "443" ) );
arrayAppend( tests, _file( dir, "400.txt", "400" ) );
arrayAppend( tests, _file( dir & "777/", "777-400.txt", "400" ) );
//arrayAppend( tests, _file( dir & "777/", "777-400.txt", "400" ) );

var files = directoryList( dir, true, "query");
var stSrc = QueryToStruct( files, "name" );

systemOutput("-----------------stSrc", true);
loop collection=stSrc item="local.item"{
systemOutput( item, true );
}
systemOutput("-----------------test", true);
loop array=tests item="local.test" {
systemOutput( test, true );
Expand All @@ -52,10 +55,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {
var stExt = QueryToStruct( extractedFiles, "name" );
systemOutput("-----------------extractedFiles", true);
systemOutput(extractedFiles.toString(), true);
systemOutput("-----------------stSrc", true);
loop collection=stSrc item="local.item"{
systemOutput( item, true );
}

systemOutput("-----------------stExt", true);
loop collection=stExt item="local.item"{
systemOutput( item, true );
Expand Down

0 comments on commit c367b09

Please sign in to comment.