Update test/built-ins/Temporal/PlainDate/compare/argument-zoneddatetime.js

Co-authored-by: Philip Chimento <philip.chimento@gmail.com>
This commit is contained in:
Ms2ger 2022-06-14 16:41:41 +02:00 committed by Philip Chimento
parent 820461ef4b
commit b1f49b5c46
1 changed files with 1 additions and 1 deletions

View File

@ -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)),