diff --git a/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/default-currency-maximum-fraction-digits.js b/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/default-currency-maximum-fraction-digits.js deleted file mode 100644 index 9ca6ffe2b9..0000000000 --- a/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/default-currency-maximum-fraction-digits.js +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2017 the V8 project authors. All rights reserved. -// This code is governed by the license found in the LICENSE file. - -/*--- -esid: ECMA-402 #sec-setnfdigitoptions -description: > - When a currency is used in Intl.NumberFormat and minimumFractionDigits is - not provided, maximumFractionDigits should be range-checked against it. -include: [assert.js] ----*/ - -assert.throws(RangeError, - () => new Intl.NumberFormat('en', { - style: 'currency', - currency: 'USD', - maximumFractionDigits: 1 - }));