diff options
author | 2021-04-28 16:45:18 +0800 | |
---|---|---|
committer | 2021-04-28 16:45:18 +0800 | |
commit | e6bb1b321d9b657309c4c4c6f445f33a0e9e563e (patch) | |
tree | 93e911d342f63162b42734987dac426f0b0545b7 /tests | |
parent | Remove BrandingError check. (diff) |
Address error behavior update.
BadUnionArgument sends command help after:
https://github.com/python-discord/bot/pull/1434
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bot/exts/backend/test_error_handler.py | 2 |
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 1b4729cbc..bd4fb5942 100644 --- a/tests/bot/exts/backend/test_error_handler.py +++ b/tests/bot/exts/backend/test_error_handler.py @@ -379,7 +379,7 @@ class IndividualErrorHandlerTests(unittest.IsolatedAsyncioTestCase): }, { "error": errors.BadUnionArgument(MagicMock(), MagicMock(), MagicMock()), - "call_prepared": False + "call_prepared": True }, { "error": errors.ArgumentParsingError(), |