diff --git a/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js b/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js deleted file mode 100644 index e6ee7be9cc..0000000000 --- a/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2019 Google Inc. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-initializedatetimeformat -description: Checks the propagation of exceptions from the options for the DateTimeFormat constructor. -features: [Intl.DateTimeFormat-quarter] ----*/ - -function CustomError() {} - -const options = [ - "quarter", -]; - -for (const option of options) { - assert.throws(CustomError, () => { - new Intl.DateTimeFormat("en", { - get [option]() { - throw new CustomError(); - } - }); - }, `Exception from ${option} getter should be propagated`); -}