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
Этот коммит содержится в:
Joram Wilander
2016-11-04 12:27:19 -04:00
коммит произвёл Christopher Speller
родитель 263f290683
Коммит 00787974d0
11 изменённых файлов: 131 добавлений и 34 удалений

Просмотреть файл

@@ -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) {