PLT-4481 Fix member count for team user lists and channel invite list (#4422)

* Fix member count for team user lists and channel invite list

* Fix client unit test
This commit is contained in:
Joram Wilander
2016-11-04 12:27:19 -04:00
committed by Christopher Speller
parent 263f290683
commit 00787974d0
11 changed files with 131 additions and 34 deletions

View File

@@ -169,7 +169,7 @@ describe('Client.Team', function() {
TestHelper.basicClient().getTeamStats(
TestHelper.basicTeam().id,
function(data) {
assert.equal(data.member_count > 0, true);
assert.equal(data.total_member_count > 0, true);
done();
},
function(err) {