diff options
| author | 2020-06-07 16:00:38 -0400 | |
|---|---|---|
| committer | 2020-06-07 16:00:38 -0400 | |
| commit | c88b5d1225716d5b09bf1c8cfbb0758ea6f1f65b (patch) | |
| tree | dc7caf29552ec9ceca14b9d63572e0be53a6fd66 /tests | |
| parent | Fix AttributeError for category check (diff) | |
| parent | Enable the 'redis' / 'aiohttp' Sentry integrations (diff) | |
Merge branch 'master' into bug/backend/stats-category-check
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bot/cogs/test_information.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/bot/cogs/test_information.py b/tests/bot/cogs/test_information.py index aca6b594f..79c0e0ad3 100644 --- a/tests/bot/cogs/test_information.py +++ b/tests/bot/cogs/test_information.py @@ -148,14 +148,18 @@ class InformationCogTests(unittest.TestCase): Voice region: {self.ctx.guild.region} Features: {', '.join(self.ctx.guild.features)} - **Counts** - Members: {self.ctx.guild.member_count:,} - Roles: {len(self.ctx.guild.roles)} + **Channel counts** Category channels: 1 Text channels: 1 Voice channels: 1 + Staff channels: 0 + + **Member counts** + Members: {self.ctx.guild.member_count:,} + Staff members: 0 + Roles: {len(self.ctx.guild.roles)} - **Members** + **Member statuses** {constants.Emojis.status_online} 2 {constants.Emojis.status_idle} 1 {constants.Emojis.status_dnd} 4 |