aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-09-27 08:29:03 +0300
committerGravatar GitHub <[email protected]>2020-09-27 08:29:03 +0300
commit8716902624668f2cef80656f5e9fae335a0559f2 (patch)
tree102206c5370d19466f4d271d083468120baa2013
parentMerge remote-tracking branch 'upstream/master' into error-handler-test (diff)
EH Tests: Fix order of imports
-rw-r--r--tests/bot/exts/backend/test_error_handler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bot/exts/backend/test_error_handler.py b/tests/bot/exts/backend/test_error_handler.py
index e8b9c7708..e3641ba21 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.moderation.silence import Silence
from bot.exts.info.tags import Tags
-from bot.decorators import InWhitelistCheckFailure
+from bot.exts.moderation.silence import Silence
from tests.helpers import MockBot, MockContext, MockGuild