aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-01-21 12:53:07 +0100
committerGravatar GitHub <[email protected]>2021-01-21 12:53:07 +0100
commit1d83eff5feb1c4abb201ce6567c9524a29cd93a2 (patch)
tree9862c4636a3a28774e25ade36b151e9ce81a24fa /tests
parentChanged slowmode reset tests (diff)
parentMerge 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.py2
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