mirror of https://github.com/tc39/test262.git
Temporal: Fix assertion message about float64-representable integer
This test isn't testing what the assertion message previously said it was testing. The integer is allowed to be unsafe, but in this case its float64-representation is out of range. See: https://github.com/tc39/proposal-temporal/issues/2785
This commit is contained in:
parent
c4f5778671
commit
f03883c7bb
|
@ -13,4 +13,4 @@ const d = new Temporal.Duration(0, 0, 0, 0, 0, 0, /* s = */ Number.MAX_SAFE_INTE
|
|||
assert.throws(RangeError, () => d.round({
|
||||
largestUnit: "nanoseconds",
|
||||
roundingIncrement: 1,
|
||||
}), "nanoseconds component is an unsafe integer after balancing");
|
||||
}), "nanoseconds component after balancing as a float64-representable integer is out of range");
|
||||
|
|
Loading…
Reference in New Issue