diff --git a/test/intl402/DateTimeFormat/prototype/resolvedOptions/order.js b/test/intl402/DateTimeFormat/prototype/resolvedOptions/order.js index 29f58cc4b3..d634e93116 100644 --- a/test/intl402/DateTimeFormat/prototype/resolvedOptions/order.js +++ b/test/intl402/DateTimeFormat/prototype/resolvedOptions/order.js @@ -5,6 +5,7 @@ esid: sec-intl.datetimeformat.prototype.resolvedoptions description: Verifies the property order for the object returned by resolvedOptions(). includes: [compareArray.js] +features: [Intl.DateTimeFormat-fractionalSecondDigits] ---*/ const options = new Intl.DateTimeFormat([], { @@ -36,6 +37,7 @@ const expected = [ "minute", "second", "timeZoneName", + "fractionalSecondDigits", ]; assert.compareArray(Object.getOwnPropertyNames(options), expected);