Skip to content

Commit 8b55c30

Browse files
authored
cln: remove printing statements (#42910)
Co-authored-by: JHM Darbyshire (iMac) <[email protected]>
1 parent 0a72afb commit 8b55c30

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/tests/io/formats/style/test_style.py

-2
Original file line numberDiff line numberDiff line change
@@ -1193,15 +1193,13 @@ def test_hide_multiindex(self):
11931193
assert ctx1["body"][0][0]["is_visible"]
11941194
assert ctx1["body"][0][1]["is_visible"]
11951195
# check for blank header rows
1196-
print(ctx1["head"][0])
11971196
assert len(ctx1["head"][0]) == 4 # two visible indexes and two data columns
11981197

11991198
ctx2 = df.style.hide_index()._translate(True, True)
12001199
# tests for 'a' and '0'
12011200
assert not ctx2["body"][0][0]["is_visible"]
12021201
assert not ctx2["body"][0][1]["is_visible"]
12031202
# check for blank header rows
1204-
print(ctx2["head"][0])
12051203
assert len(ctx2["head"][0]) == 3 # one hidden (col name) and two data columns
12061204
assert not ctx2["head"][0][0]["is_visible"]
12071205

0 commit comments

Comments
 (0)