From 8993e5c4f5a618ef9aa615fda9b87950e07907c3 Mon Sep 17 00:00:00 2001 From: Shogun Date: Wed, 28 Mar 2018 10:10:20 +0200 Subject: [PATCH] Fixed failing test. --- packages/udaru-core/test/integration/teamOps.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/udaru-core/test/integration/teamOps.test.js b/packages/udaru-core/test/integration/teamOps.test.js index 3a098b71..4809c52e 100644 --- a/packages/udaru-core/test/integration/teamOps.test.js +++ b/packages/udaru-core/test/integration/teamOps.test.js @@ -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() })