From d47749e84daeea28b6fa7cefd69e7f2836dbbf37 Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Thu, 2 May 2019 16:49:40 -0700 Subject: [PATCH] Use verifyProperty and remove dup check (#2146) --- .../DateTimeFormat/prototype/formatRange/length.js | 3 --- .../DateTimeFormat/prototype/formatRange/name.js | 13 ++++++------- .../prototype/formatRangeToParts/length.js | 3 --- .../prototype/formatRangeToParts/name.js | 13 ++++++------- .../prototype/formatToParts/length.js | 12 ++++++------ .../DateTimeFormat/prototype/formatToParts/name.js | 14 ++++++-------- 6 files changed, 24 insertions(+), 34 deletions(-) diff --git a/test/intl402/DateTimeFormat/prototype/formatRange/length.js b/test/intl402/DateTimeFormat/prototype/formatRange/length.js index 0192ccfde3..15b6e90d45 100644 --- a/test/intl402/DateTimeFormat/prototype/formatRange/length.js +++ b/test/intl402/DateTimeFormat/prototype/formatRange/length.js @@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRange.length. includes: [propertyHelper.js] features: [Intl.DateTimeFormat-formatRange] ---*/ - -assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.length, 2); - verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'length', { value: 2, enumerable: false, diff --git a/test/intl402/DateTimeFormat/prototype/formatRange/name.js b/test/intl402/DateTimeFormat/prototype/formatRange/name.js index e842172a5e..08738cc8e4 100644 --- a/test/intl402/DateTimeFormat/prototype/formatRange/name.js +++ b/test/intl402/DateTimeFormat/prototype/formatRange/name.js @@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRange.name value and descriptor includes: [propertyHelper.js] features: [Intl.DateTimeFormat-formatRange] ---*/ -assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.name, 'formatRange', - 'The value of `Intl.DateTimeFormat.prototype.formatRange.name` is `"formatRange"`' -); - -verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRange, 'name'); -verifyNotWritable(Intl.DateTimeFormat.prototype.formatRange, 'name'); -verifyConfigurable(Intl.DateTimeFormat.prototype.formatRange, 'name'); +verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'name', { + value: 'formatRange', + enumerable: false, + writable: false, + configurable: true, +}); diff --git a/test/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js b/test/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js index 541b9bdea4..63f2b98e53 100644 --- a/test/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js +++ b/test/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js @@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.length. includes: [propertyHelper.js] features: [Intl.DateTimeFormat-formatRange] ---*/ - -assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.length, 2); - verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'length', { value: 2, enumerable: false, diff --git a/test/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js b/test/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js index 142f4a6fa8..5e7e02e154 100644 --- a/test/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js +++ b/test/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js @@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.name value and des includes: [propertyHelper.js] features: [Intl.DateTimeFormat-formatRange] ---*/ -assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.name, 'formatRangeToParts', - 'The value of `Intl.DateTimeFormat.prototype.formatRangeToParts.name` is `"formatRangeToParts"`' -); - -verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name'); -verifyNotWritable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name'); -verifyConfigurable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name'); +verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name', { + value: 'formatRangeToParts', + enumerable: false, + writable: false, + configurable: true, +}); diff --git a/test/intl402/DateTimeFormat/prototype/formatToParts/length.js b/test/intl402/DateTimeFormat/prototype/formatToParts/length.js index 948a7f8929..3e120531c3 100644 --- a/test/intl402/DateTimeFormat/prototype/formatToParts/length.js +++ b/test/intl402/DateTimeFormat/prototype/formatToParts/length.js @@ -5,9 +5,9 @@ description: Intl.DateTimeFormat.prototype.formatToParts.length. includes: [propertyHelper.js] ---*/ - -assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.length, 1); - -verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, "length"); -verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, "length"); -verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, "length"); +verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'length', { + value: 1, + enumerable: false, + writable: false, + configurable: true, +}); diff --git a/test/intl402/DateTimeFormat/prototype/formatToParts/name.js b/test/intl402/DateTimeFormat/prototype/formatToParts/name.js index 1e1bff20e4..e9a67e4e93 100644 --- a/test/intl402/DateTimeFormat/prototype/formatToParts/name.js +++ b/test/intl402/DateTimeFormat/prototype/formatToParts/name.js @@ -5,11 +5,9 @@ description: Intl.DateTimeFormat.prototype.formatToParts.name value and descriptor. includes: [propertyHelper.js] ---*/ - -assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.name, 'formatToParts', - 'The value of `Intl.DateTimeFormat.prototype.formatToParts.name` is `"formatToParts"`' -); - -verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, 'name'); -verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, 'name'); -verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, 'name'); +verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'name', { + value: 'formatToParts', + enumerable: false, + writable: false, + configurable: true, +});