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 );