From 6ed5ea19bcb928725caaac97ffca1ac637e79dee Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Thu, 17 Oct 2024 20:03:15 +0200 Subject: [PATCH] test why key not exist --- test/tickets/LDEV3116.cfc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tickets/LDEV3116.cfc b/test/tickets/LDEV3116.cfc index 497e64b77c..6c1c092b79 100644 --- a/test/tickets/LDEV3116.cfc +++ b/test/tickets/LDEV3116.cfc @@ -25,6 +25,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="thread" { thread.testing = 'blah'; } thread action="join" name="test_without"; + systemOutput(cfthread.test_without,1,1); expect( cfthread.test_without ).notToHaveKey( "error", cfthread.test_without.error.stacktrace?: '???' ); expect( cfthread.test_without.testing ).toBe( "blah" ); } );