Skip to content

Commit 8c2792c

Browse files
committed
chore: check reference equality
1 parent 80da1e3 commit 8c2792c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/bson_import.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ describe('MongoDB export', () => {
9595
it('should include ObjectID', () =>
9696
expect(mongodb).to.have.property('ObjectID').that.is.a('function'));
9797
it('should have ObjectID and ObjectId equal each other', () =>
98-
expect(mongodb.ObjectId).to.deep.equal(mongodb.ObjectID));
98+
expect(mongodb.ObjectId).to.equal(mongodb.ObjectID));
9999
});

0 commit comments

Comments
 (0)