From b1f49b5c46bf46740c3cf4f3bcabe14008207e50 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 14 Jun 2022 16:41:41 +0200 Subject: [PATCH] Update test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js Co-authored-by: Philip Chimento --- .../Temporal/PlainDate/compare/argument-zoneddatetime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js b/test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js index 1b45929bea..5decb5a351 100644 --- a/test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js +++ b/test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js @@ -12,7 +12,7 @@ assert.sameValue( Temporal.PlainDate.compare(zdt, new Temporal.PlainDate(1970, 1, 1)), 0, "same date, ZDT first"); assert.sameValue( - Temporal.PlainDate.compare(zdt, new Temporal.PlainDate(1970, 1, 1)), + Temporal.PlainDate.compare(new Temporal.PlainDate(1970, 1, 1), zdt), 0, "same date, ZDT second"); assert.sameValue( Temporal.PlainDate.compare(zdt, new Temporal.PlainDate(1976, 11, 18)),