Skip to content

Commit

Permalink
chore: check reference equality
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Sep 7, 2021
1 parent 80da1e3 commit 8c2792c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/bson_import.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ describe('MongoDB export', () => {
it('should include ObjectID', () =>
expect(mongodb).to.have.property('ObjectID').that.is.a('function'));
it('should have ObjectID and ObjectId equal each other', () =>
expect(mongodb.ObjectId).to.deep.equal(mongodb.ObjectID));
expect(mongodb.ObjectId).to.equal(mongodb.ObjectID));
});

0 comments on commit 8c2792c

Please sign in to comment.