aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/moderation/test_silence.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/bot/cogs/moderation/test_silence.py b/tests/bot/cogs/moderation/test_silence.py
index 4163a9af7..ab2f091ec 100644
--- a/tests/bot/cogs/moderation/test_silence.py
+++ b/tests/bot/cogs/moderation/test_silence.py
@@ -52,6 +52,7 @@ class SilenceTests(unittest.IsolatedAsyncioTestCase):
with mock.patch.object(self.cog, "_silence", return_value=_silence_patch_return):
await self.cog.silence.callback(self.cog, self.ctx, duration)
self.ctx.send.assert_called_once_with(result_message)
+ self.ctx.reset_mock()
async def test_unsilence_sent_correct_discord_message(self):
"""Check if proper message was sent to `alert_chanel`."""