Skip to content

Commit f29d772

Browse files
committed
test: add missing assert.deepEqual() test case
None of the existing tests checked for the situation where `assert.deepEqual()` receives two objects that have the same number of keys but different key names. Therefore, line 242 of `lib/assert.js` was not being exercised by any tests. This change adds the missing test case. PR-URL: #8152 Reviewed-By: jasnell - James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent c89b6ee commit f29d772

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/parallel/test-assert.js

+3
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ assert.doesNotThrow(makeBlock(a.deepEqual, new Number(1), {}),
165165
assert.doesNotThrow(makeBlock(a.deepEqual, new Boolean(true), {}),
166166
a.AssertionError);
167167

168+
// same number of keys but different key names
169+
assert.throws(makeBlock(a.deepEqual, {a: 1}, {b: 1}), a.AssertionError);
170+
168171
//deepStrictEqual
169172
assert.doesNotThrow(makeBlock(a.deepStrictEqual, new Date(2000, 3, 14),
170173
new Date(2000, 3, 14)),

0 commit comments

Comments
 (0)