From feea534daeb2721b1a4d465d7f1187f166971c09 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 20 Jul 2021 17:57:50 +0100 Subject: [PATCH] LibJS/Tests: Fix typo in Temporal.Instant.compare test description --- .../LibJS/Tests/builtins/Temporal/Instant/Instant.compare.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.compare.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.compare.js index 37eaec3098..6118888f3f 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.compare.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/Instant/Instant.compare.js @@ -1,5 +1,5 @@ describe("correct behavior", () => { - test("length is 1", () => { + test("length is 2", () => { expect(Temporal.Instant.compare).toHaveLength(2); });