mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Shorten ListRemainder's repr() when possible.
This commit is contained in:
@ -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})"
|
||||
|
||||
|
@ -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']",
|
||||
]
|
||||
),
|
||||
(
|
||||
|
Reference in New Issue
Block a user