Skip to content

Commit

Permalink
LDEV-5198 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 13, 2024
1 parent 5e398a9 commit f8a2b7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tickets/LDEV5198.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ component extends = "org.lucee.cfml.test.LuceeTestCase" skip=true {

it( "bit preciseMath=false", function(){
application action="update" preciseMath=false;
var t= 138;
var t= 197;
var num = 9103313;
expect ( bitSHLN( t, 24) ).toBe( 3305111552 );
expect ( bitOr( num, 3305111552) ).toBe( 3314214865 ); // returns 3314214912
});

it( "bit preciseMath=true", function(){
application action="update" preciseMath=true;
var t= 138;
var t= 197;
var num = 9103313;
expect ( bitSHLN( t, 24) ).toBe( 3305111552 );
expect ( bitOr( num, 3305111552) ).toBe( 3314214865 ); // returns 3314214912
Expand Down

0 comments on commit f8a2b7d

Please sign in to comment.