diff --git a/test/tickets/LDEV_2902.cfc b/test/tickets/LDEV_2902.cfc index b7ec1b5786..66be8753be 100644 --- a/test/tickets/LDEV_2902.cfc +++ b/test/tickets/LDEV_2902.cfc @@ -20,7 +20,7 @@ component extends = "org.lucee.cfml.test.LuceeTestCase" { template : "#uri#\test.cfm", forms : { Scene = 2 } ); - expect(trim(result.filecontent)).toBe("key [TIMEZONE] doesn't exist"); + expect(trim(result.filecontent)).toBe("The key [TIMEZONE] does not exist"); }); it( title = "Checking datasource configured Empty timezone", body = function( currentSpec ){ diff --git a/test/tickets/LDEV_3054.cfc b/test/tickets/LDEV_3054.cfc index 1a047dff32..8df24a6f61 100644 --- a/test/tickets/LDEV_3054.cfc +++ b/test/tickets/LDEV_3054.cfc @@ -10,6 +10,7 @@ component extends = "org.lucee.cfml.test.LuceeTestCase" { local.result = _InternalRequest( template : "#uri#\test.cfm" ); + var c=trim(result.filecontent); expect( (find("true,The key [T]",c)>0) || (find("true,variable [T] doesn't exist",c)>0) ).toBeTrue(); }); });