Skip to content

Commit 3f240fc

Browse files
committed
Add test
1 parent d72f165 commit 3f240fc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/io/formats/test_printing.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ def test_repr_dict(self):
8282
def test_repr_mapping(self):
8383
assert printing.pprint_thing(MyMapping()) == "{'a': 4, 'b': 4}"
8484

85+
def test_repr_frozenset(self):
86+
assert printing.pprint_thing(frozenset([1, 2])) == "frozenset(1, 2)"
87+
8588

8689
class TestFormatBase:
8790
def test_adjoin(self):

0 commit comments

Comments
 (0)