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); }