Skip to content

Commit b410571

Browse files
authored
Fix frozenset pprint test
1 parent a423f43 commit b410571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_printing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_repr_mapping(self):
8383
assert printing.pprint_thing(MyMapping()) == "{'a': 4, 'b': 4}"
8484

8585
def test_repr_frozenset(self):
86-
assert printing.pprint_thing(frozenset([1, 2])) == "frozenset(1, 2)"
86+
assert printing.pprint_thing(frozenset([1, 2])) == "frozenset({1, 2})"
8787

8888

8989
class TestFormatBase:

0 commit comments

Comments
 (0)