From 3a1bcae4d1e1fa7d03c22f4d7d01bd6b9a7cb73a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A9=20Bargull?= <andre.bargull@gmail.com>
Date: Mon, 24 Sep 2018 08:49:40 -0400
Subject: [PATCH] Expect leading sign when the input is negative zero

---
 .../NumberFormat/prototype/format/format-fraction-digits.js     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/intl402/NumberFormat/prototype/format/format-fraction-digits.js b/test/intl402/NumberFormat/prototype/format/format-fraction-digits.js
index 20f3f3bc07..c12da627b0 100644
--- a/test/intl402/NumberFormat/prototype/format/format-fraction-digits.js
+++ b/test/intl402/NumberFormat/prototype/format/format-fraction-digits.js
@@ -23,7 +23,7 @@ var numberingSystems = [
 ];
 var testData = {
     "0": "000.0",
-    "-0": "000.0",
+    "-0": "-000.0",
     "123": "123.0",
     "-123": "-123.0",
     "12345": "12345.0",
-- 
GitLab