From 94e1902ed859f096d1831b44a3f99ada0241609d Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Fri, 9 Jun 2023 18:11:51 +0200 Subject: [PATCH] LDEV-1282 - improve test case --- test/tickets/LDEV4506.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tickets/LDEV4506.cfc b/test/tickets/LDEV4506.cfc index 0c50259dff..9258deb862 100644 --- a/test/tickets/LDEV4506.cfc +++ b/test/tickets/LDEV4506.cfc @@ -9,7 +9,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="date" skip=false { }).tothrow(); }); - it( title=" '5 6' should not be treated as a date", body=function( currentSpec ) { + it( title=" '5 6' should not be treated as a date",skip=true, body=function( currentSpec ) { // MICHA: skiping this,because we wanna Lucee to convert this to a date expect( isDate("5 6") ).toBeFalse(); }); });