1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:37:35 +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:
Linus Groh 2021-07-28 18:31:32 +01:00
parent 2ba338869b
commit 321f2c0927
3 changed files with 4 additions and 4 deletions

View file

@ -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,
});