aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar MrGrote <[email protected]>2020-05-08 22:11:54 +0200
committerGravatar GitHub <[email protected]>2020-05-08 22:11:54 +0200
commitbd9537ba85154ece1dca39ec03d36dd7d39a8388 (patch)
tree47bd35aefeaa3e183283a7c1b0b6b55f5836c8e3 /tests
parentAntiMalware Tests - Switched to unittest.IsolatedAsyncioTestCase (diff)
Update tests/bot/cogs/test_antimalware.py
Co-authored-by: Mark <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/test_antimalware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/cogs/test_antimalware.py b/tests/bot/cogs/test_antimalware.py
index 6fb7b399e..e0aa9d6d2 100644
--- a/tests/bot/cogs/test_antimalware.py
+++ b/tests/bot/cogs/test_antimalware.py
@@ -65,7 +65,7 @@ class AntiMalwareCogTests(unittest.IsolatedAsyncioTestCase):
self.message.delete.assert_not_called()
async def test_python_file_redirect_embed(self):
- """A message containing a .python file should result in an embed redirecting the user to our paste site"""
+ """A message containing a .py file should result in an embed redirecting the user to our paste site"""
attachment = MockAttachment(filename="python.py")
self.message.attachments = [attachment]
self.message.channel.send = AsyncMock()