mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:17:36 +00:00
LibJS: Fix types of PlainDateTime iso_{milli,micro,nano}second params
999 does not fit into an u8. :^)
This commit is contained in:
parent
2ba338869b
commit
321f2c0927
3 changed files with 4 additions and 4 deletions
|
@ -22,11 +22,11 @@ describe("normal behavior", () => {
|
|||
calendar: calendar,
|
||||
isoDay: 23,
|
||||
isoHour: 0,
|
||||
isoMicrosecond: 200,
|
||||
isoMicrosecond: 456,
|
||||
isoMillisecond: 123,
|
||||
isoMinute: 42,
|
||||
isoMonth: 7,
|
||||
isoNanosecond: 21,
|
||||
isoNanosecond: 789,
|
||||
isoSecond: 18,
|
||||
isoYear: 2021,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue