Skip to content

Commit b8cc4ba

Browse files
committed
avoid using assert.deepStrictEqual
1 parent 2faa881 commit b8cc4ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jmespath.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,6 @@ describe('search', function() {
261261
}
262262
})
263263
} catch (e) {}
264-
assert.deepStrictEqual(res, [{ a: 'foo' }])
264+
strictDeepEqual(res, [{ a: 'foo' }])
265265
})
266266
});

0 commit comments

Comments
 (0)