From ed5916eafce363467e6af0bac5800fcc4358e3b6 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Thu, 13 Jun 2024 11:25:30 -0400 Subject: [PATCH] Update test/parallel/test-assert-deep.js Co-authored-by: Chris Harvey <1362083+chharvey@users.noreply.github.com> --- test/parallel/test-assert-deep.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-assert-deep.js b/test/parallel/test-assert-deep.js index 38c9d721dd82c9..e94be7af1e6f23 100644 --- a/test/parallel/test-assert-deep.js +++ b/test/parallel/test-assert-deep.js @@ -376,7 +376,7 @@ assertOnlyDeepEqual( new Map([[null, undefined], [false, '2']]), ); const xarray = ['x']; -assertOnlyDeepEqual( +assertDeepAndStrictEqual( new Set([xarray, ['y']]), new Set([xarray, ['y']]) );