Skip to content

Commit

Permalink
Fix incorrect test case
Browse files Browse the repository at this point in the history
  • Loading branch information
HalidOdat committed Mar 16, 2023
1 parent 48b10c5 commit bf7d429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa_engine/src/builtins/number/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ fn number_constants() {
TestAction::assert_eq("Number.MAX_SAFE_INTEGER", Number::MAX_SAFE_INTEGER),
TestAction::assert_eq("Number.MIN_SAFE_INTEGER", Number::MIN_SAFE_INTEGER),
TestAction::assert_eq("Number.MAX_VALUE", f64::MAX),
TestAction::assert_eq("Number.MIN_VALUE", f64::MIN_POSITIVE),
TestAction::assert_eq("Number.MIN_VALUE", Number::MIN_VALUE),
TestAction::assert_eq("Number.POSITIVE_INFINITY", f64::INFINITY),
TestAction::assert_eq("Number.NEGATIVE_INFINITY", -f64::INFINITY),
]);
Expand Down

0 comments on commit bf7d429

Please sign in to comment.