File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
pandas/tests/io/formats/style Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments