summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-06-17 21:06:01 +0100
committerLinus Groh <mail@linusgroh.de>2022-06-17 21:06:01 +0100
commitd9fc09c6e5cfc9819a2b5d9f7b458e49589a16df (patch)
tree810b16b74a174998cca543549f35dbb1cd9d5ce8
parent25667a834c24e68e30cc33cc33425496ec8ece79 (diff)
downloadserenity-d9fc09c6e5cfc9819a2b5d9f7b458e49589a16df.zip
LibJS/Tests: Remove outdated FIXME
-rw-r--r--Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.since.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.since.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.since.js
index 2eeaeb2412..ece9eccbbd 100644
--- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.since.js
+++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainDate/PlainDate.prototype.since.js
@@ -3,11 +3,6 @@ describe("correct behavior", () => {
expect(Temporal.PlainDate.prototype.since).toHaveLength(1);
});
- // FIXME: All the checks for years, months, weeks and days have to check for -0 instead of 0.
- // This is because CreateTemporalDuration in the spec doesn't convert -0 to 0 unlike the polyfill or what
- // the test262 tests expect.
- // Once this has been fixed in the spec, change the -0 checks for these properties to be just 0.
-
test("basic functionality", () => {
const dateOne = new Temporal.PlainDate(2021, 11, 14);
const dateTwo = new Temporal.PlainDate(2022, 12, 25);