Skip to content

Commit

Permalink
LDEV-4545 LDEV-5161 update testcase to always use preciseMath=true
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 4, 2024
1 parent d1b0d1d commit b61478e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/tickets/LDEV4545.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ component extends="org.lucee.cfml.test.LuceeTestCase" skip=false {

function beforeAll(){
variables.preciseMath = getApplicationSettings().preciseMath;
application action="update" precisemath=true;
};

function afterAll(){
application action="update" precisemath=variables.preciseMath;
};

function run( testResults, textbox ) {
Expand Down

0 comments on commit b61478e

Please sign in to comment.