Merge pull request #8035 from overleaf/em-remove-chaid

Remove the chaid package from tests

GitOrigin-RevId: 61b541eebcf1982137aa10ad51940547c649e68d
This commit is contained in:
Eric Mc Sween
2022-05-23 08:04:07 +00:00
committed by Copybot
parent 51f5f80e2d
commit e0ab82e3d4
5 changed files with 5 additions and 23 deletions
@@ -127,7 +127,7 @@ describe('ProjectStructureMongoLock', function () {
{ _id: true },
(err, project) => {
expect(err).to.equal(null)
expect(project).to.have.same.id(this.locked_project)
expect(project._id).to.deep.equal(this.locked_project._id)
return done()
}
)
@@ -167,7 +167,7 @@ describe('ProjectStructureMongoLock', function () {
this.unlocked_project._id,
(err, project) => {
expect(err).to.equal(null)
expect(project).to.have.same.id(this.unlocked_project)
expect(project._id).to.deep.equal(this.unlocked_project._id)
return done()
}
)