Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Fixed failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shogun committed Mar 28, 2018
1 parent 3c030c7 commit 8993e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/udaru-core/test/integration/teamOps.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1122,8 +1122,8 @@ lab.experiment('TeamOps', () => {
udaru.teams.search({ query: 'Authors', organizationId: 'WONKA' }, (err, data, total) => {
expect(err).to.not.exist()
expect(total).to.exist()
expect(total).to.equal(1)
expect(data.length).to.equal(1)
expect(total).to.equal(3)
expect(data.length).to.equal(3)

done()
})
Expand Down

0 comments on commit 8993e5c

Please sign in to comment.