From 17fe569a5e53f24ffc9f76344be851b8fd7aa9b0 Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Wed, 22 Apr 2020 13:48:40 -0700 Subject: [PATCH] correct style-short.js --- .../RelativeTimeFormat/prototype/format/pl-pl-style-short.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js b/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js index f25ab5643c..68a0699dfc 100644 --- a/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js +++ b/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js @@ -47,7 +47,7 @@ const rtf = new Intl.RelativeTimeFormat("pl-PL", { assert.sameValue(typeof rtf.format, "function", "format should be supported"); for (const [unitArgument, expected] of Object.entries(units)) { - assert.sameValue(rtf.format(1000, unitArgument), `za 1\u00a0000 ${expected.many}`); + assert.sameValue(rtf.format(1000, unitArgument), `za 1000 ${expected.many}`); assert.sameValue(rtf.format(10, unitArgument), `za 10 ${expected.many}`); assert.sameValue(rtf.format(2, unitArgument), `za 2 ${expected.few}`); assert.sameValue(rtf.format(1, unitArgument), `za 1 ${expected.one}`); @@ -56,5 +56,5 @@ for (const [unitArgument, expected] of Object.entries(units)) { assert.sameValue(rtf.format(-1, unitArgument), `1 ${expected.one} temu`); assert.sameValue(rtf.format(-2, unitArgument), `2 ${expected.few} temu`); assert.sameValue(rtf.format(-10, unitArgument), `10 ${expected.many} temu`); - assert.sameValue(rtf.format(-1000, unitArgument), `1\u00a0000 ${expected.many} temu`); + assert.sameValue(rtf.format(-1000, unitArgument), `1000 ${expected.many} temu`); }