Skip to content

Commit

Permalink
improve test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jul 18, 2024
1 parent 223dfa0 commit 3249dae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tickets/LDEV_3054.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ component extends = "org.lucee.cfml.test.LuceeTestCase" {
local.result = _InternalRequest(
template : "#uri#\test.cfm"
);
expect(trim(result.filecontent)).toBe("");
expect(find("true,The key [T]",trim(result.filecontent))>0 ).toBeTrue();
var c=trim(result.filecontent);
expect( (find("true,The key [T]",c)>0) || (find("true,variable [T] doesn't exist",c)>0) ).toBeTrue();
});
});
}
Expand Down

0 comments on commit 3249dae

Please sign in to comment.