diff options
| author | 2021-01-21 12:53:07 +0100 | |
|---|---|---|
| committer | 2021-01-21 12:53:07 +0100 | |
| commit | 1d83eff5feb1c4abb201ce6567c9524a29cd93a2 (patch) | |
| tree | 9862c4636a3a28774e25ade36b151e9ce81a24fa /tests | |
| parent | Changed slowmode reset tests (diff) | |
| parent | Merge PR #1202 - fuzzy match the role command (diff) | |
Merge branch 'master' into mbaruh/sm-stats
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bot/exts/info/test_information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/bot/exts/info/test_information.py b/tests/bot/exts/info/test_information.py index d077be960..80731c9f0 100644 --- a/tests/bot/exts/info/test_information.py +++ b/tests/bot/exts/info/test_information.py @@ -65,7 +65,7 @@ class InformationCogTests(unittest.IsolatedAsyncioTestCase):              permissions=discord.Permissions(0),          ) -        self.ctx.guild.roles.append([dummy_role, admin_role]) +        self.ctx.guild.roles.extend([dummy_role, admin_role])          self.cog.role_info.can_run = unittest.mock.AsyncMock()          self.cog.role_info.can_run.return_value = True | 
