Skip to content

Commit

Permalink
tests: fix case sensitivity test case
Browse files Browse the repository at this point in the history
  • Loading branch information
yusshu committed Dec 29, 2023
1 parent b61abe0 commit e8f35ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void test() {
assertEvaluatesAndCompiles(50D, "Math.CLAMP(10, 50, 100)");
assertEvaluatesAndCompiles(50D, "math.clamp(10, 50, 100)");
assertEvaluatesAndCompiles(50D, "math.CLAMP(10, 50, 100)");
assertEvaluatesAndCompiles(128.1415, "MATH.ABS(-100) + Math.sqrt(25) + math.PI");

assertEvaluatesAndCompiles(108.1415, "MATH.ABS(-100) + Math.sqrt(25) + math.PI");
}
}

0 comments on commit e8f35ac

Please sign in to comment.