diff options
author | 2020-03-05 09:08:10 +0200 | |
---|---|---|
committer | 2020-03-05 09:08:10 +0200 | |
commit | 0b75d3f5e717f99f53522d4224abea6223ef6c84 (patch) | |
tree | 74d94c876854f628b44fe6e34a28653d12309101 | |
parent | (Information Cog, !roles command): Added 's' to end of 'role' only if there i... (diff) |
(Information Cog, !roles command test): Removed 's' at end of "Total 1 role(s)" due changes in command.
-rw-r--r-- | tests/bot/cogs/test_information.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/cogs/test_information.py b/tests/bot/cogs/test_information.py index 7c265bba8..3c26374f5 100644 --- a/tests/bot/cogs/test_information.py +++ b/tests/bot/cogs/test_information.py @@ -45,7 +45,7 @@ class InformationCogTests(unittest.TestCase): _, kwargs = self.ctx.send.call_args embed = kwargs.pop('embed') - self.assertEqual(embed.title, "Role information (Total 1 roles)") + self.assertEqual(embed.title, "Role information (Total 1 role)") self.assertEqual(embed.colour, discord.Colour.blurple()) self.assertEqual(embed.description, f"\n`{self.moderator_role.id}` - {self.moderator_role.mention}\n") |