From fea811728ec8a14d14c17c439f5ad0c8a24c76ad Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Mon, 7 Oct 2024 14:35:12 +0200 Subject: [PATCH] fix conflict with other test cases. --- test/tickets/LDEV5092.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tickets/LDEV5092.cfc b/test/tickets/LDEV5092.cfc index 0f6724d375..84ae34a868 100644 --- a/test/tickets/LDEV5092.cfc +++ b/test/tickets/LDEV5092.cfc @@ -31,7 +31,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { // simply rethrow the exception if one did occur in any thread (no interpretation needed) loop struct=cfthread index="local.k" item="local.val" { - if(structKeyExists(val, "ERROR")) throw val.error; + if(left(k,len(prefix))==prefix && structKeyExists(val, "ERROR")) throw val.error; } }); });