not on purpose, single quotes in tests

This commit is contained in:
Alex 2023-02-04 19:30:08 +02:00
parent 8c283ee242
commit 893866c5a3

View file

@ -42,7 +42,7 @@ class TestCommandFilter:
[("12TeSt", "3t4Est", "5TE6sT"), ("12test", "3t4est", "5te6st")],
[[BotCommand(command="Test", description="Test1")], ("test",)],
[[BotCommand(command="tEsT", description="Test2")], ("test",)],
[(re.compile(r"test(\d+)"), 'TeSt'), (re.compile(r"test(\d+)"), "test")],
[(re.compile(r"test(\d+)"), "TeSt"), (re.compile(r"test(\d+)"), "test")],
],
)
def test_init_casefold(self, commands, checklist):