We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a423f43 commit b410571Copy full SHA for b410571
pandas/tests/io/formats/test_printing.py
@@ -83,7 +83,7 @@ def test_repr_mapping(self):
83
assert printing.pprint_thing(MyMapping()) == "{'a': 4, 'b': 4}"
84
85
def test_repr_frozenset(self):
86
- assert printing.pprint_thing(frozenset([1, 2])) == "frozenset(1, 2)"
+ assert printing.pprint_thing(frozenset([1, 2])) == "frozenset({1, 2})"
87
88
89
class TestFormatBase:
0 commit comments