diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/bot/exts/moderation/infraction/test_infractions.py | 1 | ||||
| -rw-r--r-- | tests/bot/exts/moderation/test_clean.py | 2 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/tests/bot/exts/moderation/infraction/test_infractions.py b/tests/bot/exts/moderation/infraction/test_infractions.py index 8845fb382..8bed1e386 100644 --- a/tests/bot/exts/moderation/infraction/test_infractions.py +++ b/tests/bot/exts/moderation/infraction/test_infractions.py @@ -253,6 +253,7 @@ class CleanBanTests(unittest.IsolatedAsyncioTestCase):          self.clean_cog._clean_messages = AsyncMock(return_value=self.log_url)      def mock_get_cog(self, enable_clean, enable_manage): +        """Mock get cog factory that allows the user to specify whether clean and manage cogs are enabled."""          def inner(name):              if name == "ModManagement":                  return self.management_cog if enable_manage else None diff --git a/tests/bot/exts/moderation/test_clean.py b/tests/bot/exts/moderation/test_clean.py index 83489ea00..d7647fa48 100644 --- a/tests/bot/exts/moderation/test_clean.py +++ b/tests/bot/exts/moderation/test_clean.py @@ -81,7 +81,7 @@ class CleanTests(unittest.IsolatedAsyncioTestCase):          self.assertIn("2 messages", sent_message)      @patch("bot.exts.moderation.clean.is_mod_channel") -    async def test_clean_send_success_message__to_mods_when_ran_in_non_mod_channel(self, mod_channel_check): +    async def test_clean_send_success_message_to_mods_when_ran_in_non_mod_channel(self, mod_channel_check):          """Clean command should send a confirmation message to #mods if invoked in a non-mod channel."""          mod_channel_check.return_value = False          mocked_mods = MockTextChannel(id=1234567) | 
