diff options
author | 2022-10-23 11:45:13 +0100 | |
---|---|---|
committer | 2022-10-23 11:45:13 +0100 | |
commit | bf54dba4963eeda4f6a72b8abb77d9ae2e05f5ec (patch) | |
tree | 7652d74726039cf3ada90a709d24d615bd95ba86 /tests | |
parent | Merge pull request #2298 from shtlrs/issue-2294-zen-command (diff) | |
parent | Move Security cog to backend extension (diff) |
Merge pull request #2308 from python-discord/move_security_cog
Move Security cog to backend extension
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bot/exts/backend/test_security.py (renamed from tests/bot/exts/filters/test_security.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/exts/filters/test_security.py b/tests/bot/exts/backend/test_security.py index 007b7b1eb..c3985c609 100644 --- a/tests/bot/exts/filters/test_security.py +++ b/tests/bot/exts/backend/test_security.py @@ -2,7 +2,7 @@ import unittest from discord.ext.commands import NoPrivateMessage -from bot.exts.filters import security +from bot.exts.backend import security from tests.helpers import MockBot, MockContext |