From f6f69d63e92d8dc923013baef2bd3889e0b9a269 Mon Sep 17 00:00:00 2001 From: "JHM Darbyshire (iMac)" Date: Fri, 6 Aug 2021 00:55:04 +0200 Subject: [PATCH] cln: remove printing statements --- pandas/tests/io/formats/style/test_style.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandas/tests/io/formats/style/test_style.py b/pandas/tests/io/formats/style/test_style.py index 7b1dc95335b11..6b084ecc2ca6c 100644 --- a/pandas/tests/io/formats/style/test_style.py +++ b/pandas/tests/io/formats/style/test_style.py @@ -1193,7 +1193,6 @@ def test_hide_multiindex(self): assert ctx1["body"][0][0]["is_visible"] assert ctx1["body"][0][1]["is_visible"] # check for blank header rows - print(ctx1["head"][0]) assert len(ctx1["head"][0]) == 4 # two visible indexes and two data columns ctx2 = df.style.hide_index()._translate(True, True) @@ -1201,7 +1200,6 @@ def test_hide_multiindex(self): assert not ctx2["body"][0][0]["is_visible"] assert not ctx2["body"][0][1]["is_visible"] # check for blank header rows - print(ctx2["head"][0]) assert len(ctx2["head"][0]) == 3 # one hidden (col name) and two data columns assert not ctx2["head"][0][0]["is_visible"]