aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2020-02-26 19:24:52 +0100
committerGravatar Numerlor <[email protected]>2020-02-26 19:24:52 +0100
commitc0d2f51f4e4a57da23f1387e8cf6b1a9e8c02e73 (patch)
tree54024826fbe72276dca3bdfba4dae82c88c52370
parentRemove number check on tags. (diff)
Adjust tests for new converter behavior.
-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!"),
)