Skip to content

Commit 36d50aa

Browse files
committed
Fix deepStrictEqual "polyfill"
1 parent 8a7cde3 commit 36d50aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/node/types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var objectEntries = require('object.entries');
2121

2222
// "polyfill" deepStrictEqual on Node 0.12 and below
2323
if (!assert.deepStrictEqual) {
24-
assert.deepStrictEqual = assert.strictEqual;
24+
assert.deepStrictEqual = assert.deepEqual;
2525
}
2626

2727
function uncurryThis(f) {

0 commit comments

Comments
 (0)