From 131c396b6af8184a21bbe3fbfe5ea35152956f1e Mon Sep 17 00:00:00 2001 From: Jesse Alama Date: Wed, 23 Feb 2022 11:40:59 +0100 Subject: [PATCH] Remove number test (yields a different error, not an exception) --- .../prototype/formatRange/fails-on-distinct-temporal-types.js | 1 - .../formatRangeToParts/fails-on-distinct-temporal-types.js | 1 - 2 files changed, 2 deletions(-) diff --git a/test/intl402/Intl/DateTimeFormat/prototype/formatRange/fails-on-distinct-temporal-types.js b/test/intl402/Intl/DateTimeFormat/prototype/formatRange/fails-on-distinct-temporal-types.js index 420759e6bc..c3ec39df4c 100644 --- a/test/intl402/Intl/DateTimeFormat/prototype/formatRange/fails-on-distinct-temporal-types.js +++ b/test/intl402/Intl/DateTimeFormat/prototype/formatRange/fails-on-distinct-temporal-types.js @@ -12,7 +12,6 @@ const us = new Intl.DateTimeFormat('en-US'); const instances = { date: new Date(1580527800000), instant: new Temporal.Instant(0n), - number: 1580527800000, plaindate: new Temporal.PlainDate(2000, 5, 2), plaindatetime: new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321), plainmonthday: new Temporal.PlainMonthDay(5, 2), diff --git a/test/intl402/Intl/DateTimeFormat/prototype/formatRangeToParts/fails-on-distinct-temporal-types.js b/test/intl402/Intl/DateTimeFormat/prototype/formatRangeToParts/fails-on-distinct-temporal-types.js index 0387e1f228..4aeaea5c18 100644 --- a/test/intl402/Intl/DateTimeFormat/prototype/formatRangeToParts/fails-on-distinct-temporal-types.js +++ b/test/intl402/Intl/DateTimeFormat/prototype/formatRangeToParts/fails-on-distinct-temporal-types.js @@ -12,7 +12,6 @@ const us = new Intl.DateTimeFormat('en-US'); const instances = { date: new Date(1580527800000), instant: new Temporal.Instant(0n), - number: 1580527800000, plaindate: new Temporal.PlainDate(2000, 5, 2), plaindatetime: new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321), plainmonthday: new Temporal.PlainMonthDay(5, 2),