From 9b0d09eb11afe7af358c5018401478a6003e497c Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Wed, 15 May 2019 22:14:13 -0700 Subject: [PATCH] change the removed unit 'generic' to 'gigabit' --- test/intl402/NumberFormat/style-unit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/style-unit.js b/test/intl402/NumberFormat/style-unit.js index d50d55b1bd..7eae448c50 100644 --- a/test/intl402/NumberFormat/style-unit.js +++ b/test/intl402/NumberFormat/style-unit.js @@ -20,7 +20,7 @@ const validOptions = [ ]; for (const [validOption, expected] of validOptions) { - const nf = new Intl.NumberFormat([], {"style": validOption, "unit": "generic"}); + const nf = new Intl.NumberFormat([], {"style": validOption, "unit": "gigabit"}); const resolvedOptions = nf.resolvedOptions(); assert.sameValue(resolvedOptions.style, expected); }