aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Shirayuki Nekomata <[email protected]>2020-02-29 14:19:40 +0700
committerGravatar GitHub <[email protected]>2020-02-29 14:19:40 +0700
commitf928e816309cffdd057b11b68bc8c1fe4b97967f (patch)
tree0b2388b99d4351020effdccb783b5c1305d76cb2 /tests
parentMerge pull request #710 from python-discord/eval-enhancements (diff)
parentMerge branch 'master' into fuzzy_zero_div (diff)
Merge pull request #797 from Numerlor/fuzzy_zero_div
Fix invalid tag names being passed to the tag cog.
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/test_converters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/test_converters.py b/tests/bot/test_converters.py
index b2b78d9dd..1e5ca62ae 100644
--- a/tests/bot/test_converters.py
+++ b/tests/bot/test_converters.py
@@ -68,7 +68,7 @@ class ConverterTests(unittest.TestCase):
('👋', "Don't be ridiculous, you can't use that character!"),
('', "Tag names should not be empty, or filled with whitespace."),
(' ', "Tag names should not be empty, or filled with whitespace."),
- ('42', "Tag names can't be numbers."),
+ ('42', "Tag names must contain at least one letter."),
('x' * 128, "Are you insane? That's way too long!"),
)