From 8e15f532e199b336491791f38af5b4f442e069b7 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 27 Jul 2018 09:26:50 +0200 Subject: [PATCH] Intl.NumberFormat: Update another test for negative zero. The specification was updated in https://github.com/tc39/ecma402/pull/232. --- .../NumberFormat/prototype/format/format-significant-digits.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/prototype/format/format-significant-digits.js b/test/intl402/NumberFormat/prototype/format/format-significant-digits.js index b62702c94d..15ed8d9ca4 100644 --- a/test/intl402/NumberFormat/prototype/format/format-significant-digits.js +++ b/test/intl402/NumberFormat/prototype/format/format-significant-digits.js @@ -23,7 +23,7 @@ var numberingSystems = [ ]; var testData = { "0": "0.00", - "-0": "0.00", + "-0": "-0.00", "123": "123", "-123": "-123", "12345": "12345",