We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a72afb commit 8b55c30Copy full SHA for 8b55c30
pandas/tests/io/formats/style/test_style.py
@@ -1193,15 +1193,13 @@ def test_hide_multiindex(self):
1193
assert ctx1["body"][0][0]["is_visible"]
1194
assert ctx1["body"][0][1]["is_visible"]
1195
# check for blank header rows
1196
- print(ctx1["head"][0])
1197
assert len(ctx1["head"][0]) == 4 # two visible indexes and two data columns
1198
1199
ctx2 = df.style.hide_index()._translate(True, True)
1200
# tests for 'a' and '0'
1201
assert not ctx2["body"][0][0]["is_visible"]
1202
assert not ctx2["body"][0][1]["is_visible"]
1203
1204
- print(ctx2["head"][0])
1205
assert len(ctx2["head"][0]) == 3 # one hidden (col name) and two data columns
1206
assert not ctx2["head"][0][0]["is_visible"]
1207
0 commit comments