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
|
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
|
||||||
const units = {
|
const units = {
|
||||||
"second": always("s"),
|
"second": always("sek."),
|
||||||
"minute": always("min"),
|
"minute": always("min"),
|
||||||
"hour": always("g."),
|
"hour": always("godz."),
|
||||||
"day": {
|
"day": {
|
||||||
"many": "dni",
|
"many": "dni",
|
||||||
"few": "dni",
|
"few": "dni",
|
||||||
|
|
|
@ -28,9 +28,9 @@ function always(s) {
|
||||||
|
|
||||||
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
|
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
|
||||||
const units = {
|
const units = {
|
||||||
"second": always("sek."),
|
"second": always("s"),
|
||||||
"minute": always("min"),
|
"minute": always("min"),
|
||||||
"hour": always("godz."),
|
"hour": always("g."),
|
||||||
"day": {
|
"day": {
|
||||||
"many": "dni",
|
"many": "dni",
|
||||||
"few": "dni",
|
"few": "dni",
|
||||||
|
@ -51,7 +51,7 @@ const units = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const rtf = new Intl.RelativeTimeFormat("pl-PL", {
|
const rtf = new Intl.RelativeTimeFormat("pl-PL", {
|
||||||
"style": "short",
|
"style": "narrow",
|
||||||
});
|
});
|
||||||
|
|
||||||
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
|
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
|
||||||
|
|
Loading…
Reference in New Issue