Skip to content

Commit

Permalink
chore: Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake committed Jan 3, 2024
1 parent 00a60d7 commit b4bdf49
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions compiler/test/suites/numbers.re
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,7 @@ describe("numbers", ({test, testSkip}) => {
);
assertRun("number_syntax13", "print(17179869184 - 1024)", "17179868160\n");
// equality checks
assertRun(
"nan_equality1",
{|include "float32"; print(Float32.div(0.0f, 0.0f) == Float32.div(0.0f, 0.0f))|},
"false\n",
);
assertRun("nan_equality1", {|print(NaNf == NaNf)|}, "false\n");
assertRun(
"nan_equality2",
{|include "float64"; print(Float64.div(0.0d, 0.0d) == Float64.div(0.0d, 0.0d))|},
Expand Down

0 comments on commit b4bdf49

Please sign in to comment.