diff --git a/irctest/patma.py b/irctest/patma.py index 2ae27e8..30ce278 100644 --- a/irctest/patma.py +++ b/irctest/patma.py @@ -81,6 +81,8 @@ class ListRemainder: def __repr__(self) -> str: if self.min_length: return f"ListRemainder({self.item!r}, min_length={self.min_length})" + elif self.item is ANYSTR: + return "*ANYLIST" else: return f"ListRemainder({self.item!r})" diff --git a/irctest/self_tests/cases.py b/irctest/self_tests/cases.py index 296cfa0..edc4c05 100644 --- a/irctest/self_tests/cases.py +++ b/irctest/self_tests/cases.py @@ -223,8 +223,8 @@ MESSAGE_SPECS: List[Tuple[Dict, List[str], List[str], List[str]]] = [ ], # and they each error with: [ - "expected params to match ['nick', 'FOO=1', ListRemainder(ANYSTR)], got ['nick']", - "expected params to match ['nick', 'FOO=1', ListRemainder(ANYSTR)], got ['nick', 'BAR=2']", + "expected params to match ['nick', 'FOO=1', *ANYLIST], got ['nick']", + "expected params to match ['nick', 'FOO=1', *ANYLIST], got ['nick', 'BAR=2']", ] ), (