Skip to content

Commit

Permalink
Do not cast large int for test
Browse files Browse the repository at this point in the history
  • Loading branch information
zoddicus committed Oct 24, 2023
1 parent 1425a63 commit ea04cd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unittests/floating_point.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3549,8 +3549,8 @@ const kRoundIntervalCases = {
{ input: 2 ** 62, expected: 2 ** 62 },
{ input: -(2 ** 62), expected: -(2 ** 62) },
{
input: reinterpretU64AsF64(0x8000_0000_0000_0000n),
expected: reinterpretU64AsF64(0x8000_0000_0000_0000n),
input: 0x8000_0000_0000_0000,
expected: 0x8000_0000_0000_0000,
}, // https://github.com/gpuweb/cts/issues/2766
],
} as const;
Expand Down

0 comments on commit ea04cd1

Please sign in to comment.