Ensure fallback years values are present

This commit is contained in:
Jesse Alama 2022-02-21 14:06:52 +01:00 committed by Philip Chimento
parent ee1f96235b
commit 9aaa22cb06
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ features: [Temporal]
---*/
const tests = [
[[], "05-02[u-ca=iso8601]"],
[[], "1972-05-02[u-ca=iso8601]"],
[[{ toString() { return "custom"; } }], "1972-05-02[u-ca=custom]"],
[[{ toString() { return "iso8601"; } }], "05-02[u-ca=iso8601]"],
[[{ toString() { return "iso8601"; } }], "1972-05-02[u-ca=iso8601]"],
[[{ toString() { return "ISO8601"; } }], "1972-05-02[u-ca=ISO8601]"],
[[{ toString() { return "\u0131so8601"; } }], "1972-05-02[u-ca=\u0131so8601]"], // dotless i
];