From e557560f7178fec3e5addf81db1b5c9e8057a7d0 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Fri, 19 Oct 2018 10:34:02 -0400 Subject: [PATCH] Curation: remove v8/test262/local-tests/test/intl402/NumberFormat/default-currency-maximum-fraction-digits.js A version of the same file, containing the same test with more coverage and a more complete set of meta data exists, dft-currency-mnfd-range-check-mxfd.js --- .../default-currency-maximum-fraction-digits.js | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/default-currency-maximum-fraction-digits.js 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 - }));