Show More
@@ -422,7 +422,7 b' def test_collections_counter():' | |||
|
422 | 422 | (Counter(), 'Counter()'), |
|
423 | 423 | (Counter(a=1), "Counter({'a': 1})"), |
|
424 | 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 | 427 | for obj, expected in cases: |
|
428 | 428 | assert pretty.pretty(obj) == expected |
General Comments 0
You need to be logged in to leave comments.
Login now