aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-09-27 08:44:03 +0300
committerGravatar GitHub <[email protected]>2020-09-27 08:44:03 +0300
commit5f250690523a4a1c631834d2a8e64898614c5932 (patch)
tree7b1246e8e8632a7921f07ee55d00174c2316e264 /tests
parentEH Tests: Fix order of imports (diff)
EH tests: Fix InWhitelistCheckFailure import path
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/exts/backend/test_error_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/exts/backend/test_error_handler.py b/tests/bot/exts/backend/test_error_handler.py
index e3641ba21..4a0adb03e 100644
--- a/tests/bot/exts/backend/test_error_handler.py
+++ b/tests/bot/exts/backend/test_error_handler.py
@@ -4,10 +4,10 @@ from unittest.mock import AsyncMock, MagicMock, call, patch
from discord.ext.commands import errors
from bot.api import ResponseCodeError
-from bot.decorators import InWhitelistCheckFailure
from bot.exts.backend.error_handler import ErrorHandler, setup
from bot.exts.info.tags import Tags
from bot.exts.moderation.silence import Silence
+from bot.utils.checks import InWhitelistCheckFailure
from tests.helpers import MockBot, MockContext, MockGuild