mirror of https://github.com/tc39/test262.git
Merge pull request #1681 from Ms2ger/rtf-pl-fix
Intl.RelativeTimeFormat: Fix copy/paste errors in Polish tests.
This commit is contained in:
commit
f9d549329a
|
@ -18,9 +18,9 @@ function always(s) {
|
|||
|
||||
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
|
||||
const units = {
|
||||
"second": always("s"),
|
||||
"second": always("sek."),
|
||||
"minute": always("min"),
|
||||
"hour": always("g."),
|
||||
"hour": always("godz."),
|
||||
"day": {
|
||||
"many": "dni",
|
||||
"few": "dni",
|
||||
|
|
|
@ -28,9 +28,9 @@ function always(s) {
|
|||
|
||||
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
|
||||
const units = {
|
||||
"second": always("sek."),
|
||||
"second": always("s"),
|
||||
"minute": always("min"),
|
||||
"hour": always("godz."),
|
||||
"hour": always("g."),
|
||||
"day": {
|
||||
"many": "dni",
|
||||
"few": "dni",
|
||||
|
@ -51,7 +51,7 @@ const units = {
|
|||
};
|
||||
|
||||
const rtf = new Intl.RelativeTimeFormat("pl-PL", {
|
||||
"style": "short",
|
||||
"style": "narrow",
|
||||
});
|
||||
|
||||
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
|
||||
|
|
Loading…
Reference in New Issue