From c367b0910c89346fc6cebeeae195e7a22f451a5c Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Fri, 27 Dec 2024 16:43:06 +0100 Subject: [PATCH] Update LDEV5034.cfc --- test/tickets/LDEV5034.cfc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/tickets/LDEV5034.cfc b/test/tickets/LDEV5034.cfc index c3ed6ffb96..c97779bca3 100644 --- a/test/tickets/LDEV5034.cfc +++ b/test/tickets/LDEV5034.cfc @@ -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 ); @@ -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 );