diff options
| author | 2020-02-29 14:19:40 +0700 | |
|---|---|---|
| committer | 2020-02-29 14:19:40 +0700 | |
| commit | f928e816309cffdd057b11b68bc8c1fe4b97967f (patch) | |
| tree | 0b2388b99d4351020effdccb783b5c1305d76cb2 /tests | |
| parent | Merge pull request #710 from python-discord/eval-enhancements (diff) | |
| parent | Merge 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.py | 2 | 
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!"),          ) | 
