summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/number-format/format-currency.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/intl/number-format/format-currency.js')
-rwxr-xr-xdeps/v8/test/intl/number-format/format-currency.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/intl/number-format/format-currency.js b/deps/v8/test/intl/number-format/format-currency.js
index 97e49f9aa6..0013ebea77 100755
--- a/deps/v8/test/intl/number-format/format-currency.js
+++ b/deps/v8/test/intl/number-format/format-currency.js
@@ -12,7 +12,7 @@ assertEquals("$54,306.40", nf_USD.format(parseFloat(54306.4047970)));
var nf_JPY = new Intl.NumberFormat(['ja'],
{style: 'currency', currency: 'JPY', currencyDisplay: "code"});
-assertEquals("JPY54,306", nf_JPY.format(parseFloat(54306.4047970)));
+assertEquals("JPY\u00a054,306", nf_JPY.format(parseFloat(54306.4047970)));
var nf_EUR = new Intl.NumberFormat(['pt'], {style: 'currency', currency: 'EUR'});