##// END OF EJS Templates
Adding comma so that Lint with Darker check passes
Jono Tassia -
Show More
@@ -422,7 +422,7 b' def test_collections_counter():'
422 (Counter(), 'Counter()'),
422 (Counter(), 'Counter()'),
423 (Counter(a=1), "Counter({'a': 1})"),
423 (Counter(a=1), "Counter({'a': 1})"),
424 (MyCounter(a=1), "MyCounter({'a': 1})"),
424 (MyCounter(a=1), "MyCounter({'a': 1})"),
425 (Counter(a=1, c=22), "Counter({'c': 22, 'a': 1})")
425 (Counter(a=1, c=22), "Counter({'c': 22, 'a': 1})"),
426 ]
426 ]
427 for obj, expected in cases:
427 for obj, expected in cases:
428 assert pretty.pretty(obj) == expected
428 assert pretty.pretty(obj) == expected
General Comments 0
You need to be logged in to leave comments. Login now