diff options
author | 2020-11-24 20:59:43 +0300 | |
---|---|---|
committer | 2020-11-24 20:59:43 +0300 | |
commit | 675d7504977acafdb73d6a51e91228180a7c02a2 (patch) | |
tree | cd21a520f964a5a06e67205a671c64fc4286ec9a | |
parent | Move VoiceChat Sync To _unsilence (diff) |
Fixes Typo in Silence Tests
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | tests/bot/exts/moderation/test_silence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/exts/moderation/test_silence.py b/tests/bot/exts/moderation/test_silence.py index aab607392..8f3c1cb8b 100644 --- a/tests/bot/exts/moderation/test_silence.py +++ b/tests/bot/exts/moderation/test_silence.py @@ -821,6 +821,6 @@ class UnsilenceTests(unittest.IsolatedAsyncioTestCase): channel.set_permissions.assert_called_once_with(role, overwrite=overwrites) if channel != ctx.channel: - ctx.channel.assert_not_called() + ctx.channel.send.assert_not_called() await reset() |