Skip to content

Commit 20cf987

Browse files
committed
use assert instead of assertFalse,assertEqual
1 parent 55c6886 commit 20cf987

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

pandas/tests/io/formats/test_style.py

+31-31
Original file line numberDiff line numberDiff line change
@@ -817,19 +817,19 @@ def test_hide_single_index(self):
817817
assert(ctx['body'][0][0]['is_visible'])
818818
assert(ctx['head'][0][0]['is_visible'])
819819
ctx2 = self.df.style.hide_index()._translate()
820-
self.assertFalse(ctx2['body'][0][0]['is_visible'])
821-
self.assertFalse(ctx2['head'][0][0]['is_visible'])
820+
assert(not ctx2['body'][0][0]['is_visible'])
821+
assert(not ctx2['head'][0][0]['is_visible'])
822822

823823
# single named index
824824
ctx3 = self.df.set_index('A').style._translate()
825825
assert(ctx3['body'][0][0]['is_visible'])
826-
self.assertEqual(len(ctx3['head']), 2) # 2 header levels
826+
assert(len(ctx3['head']) == 2) # 2 header levels
827827
assert(ctx3['head'][0][0]['is_visible'])
828828

829829
ctx4 = self.df.set_index('A').style.hide_index()._translate()
830-
self.assertFalse(ctx4['body'][0][0]['is_visible'])
831-
self.assertEqual(len(ctx4['head']), 1) # only 1 header levels
832-
self.assertFalse(ctx4['head'][0][0]['is_visible'])
830+
assert(not ctx4['body'][0][0]['is_visible'])
831+
assert(len(ctx4['head']) == 1) # only 1 header levels
832+
assert(not ctx4['head'][0][0]['is_visible'])
833833

834834
def test_hide_multiindex(self):
835835
df = pd.DataFrame({'A': [1, 2]}, index=pd.MultiIndex.from_arrays(
@@ -846,33 +846,33 @@ def test_hide_multiindex(self):
846846

847847
ctx2 = df.style.hide_index()._translate()
848848
# tests for 'a' and '0'
849-
self.assertFalse(ctx2['body'][0][0]['is_visible'])
850-
self.assertFalse(ctx2['body'][0][1]['is_visible'])
849+
assert(not ctx2['body'][0][0]['is_visible'])
850+
assert(not ctx2['body'][0][1]['is_visible'])
851851
# check for blank header rows
852-
self.assertFalse(ctx2['head'][0][0]['is_visible'])
853-
self.assertFalse(ctx2['head'][0][1]['is_visible'])
852+
assert(not ctx2['head'][0][0]['is_visible'])
853+
assert(not ctx2['head'][0][1]['is_visible'])
854854

855855
def test_hide_columns_single_level(self):
856856
# test hiding single column
857857
ctx = self.df.style._translate()
858858
assert(ctx['head'][0][1]['is_visible'])
859-
self.assertEqual(ctx['head'][0][1]['display_value'], 'A')
859+
assert(ctx['head'][0][1]['display_value'] == 'A')
860860
assert(ctx['head'][0][2]['is_visible'])
861-
self.assertEqual(ctx['head'][0][2]['display_value'], 'B')
861+
assert(ctx['head'][0][2]['display_value'] == 'B')
862862
assert(ctx['body'][0][1]['is_visible']) # col A, row 1
863863
assert(ctx['body'][1][2]['is_visible']) # col B, row 1
864864

865865
ctx = self.df.style.hide_columns('A')._translate()
866-
self.assertFalse(ctx['head'][0][1]['is_visible'])
867-
self.assertFalse(ctx['body'][0][1]['is_visible']) # col A, row 1
866+
assert(not ctx['head'][0][1]['is_visible'])
867+
assert(not ctx['body'][0][1]['is_visible']) # col A, row 1
868868
assert(ctx['body'][1][2]['is_visible']) # col B, row 1
869869

870870
# test hiding mulitiple columns
871871
ctx = self.df.style.hide_columns(['A', 'B'])._translate()
872-
self.assertFalse(ctx['head'][0][1]['is_visible'])
873-
self.assertFalse(ctx['head'][0][2]['is_visible'])
874-
self.assertFalse(ctx['body'][0][1]['is_visible']) # col A, row 1
875-
self.assertFalse(ctx['body'][1][2]['is_visible']) # col B, row 1
872+
assert(not ctx['head'][0][1]['is_visible'])
873+
assert(not ctx['head'][0][2]['is_visible'])
874+
assert(not ctx['body'][0][1]['is_visible']) # col A, row 1
875+
assert(not ctx['body'][1][2]['is_visible']) # col B, row 1
876876

877877
def test_hide_columns_mult_levels(self):
878878
# setup dataframe with multiple column levels and indices
@@ -887,39 +887,39 @@ def test_hide_columns_mult_levels(self):
887887
# column headers
888888
assert(ctx['head'][0][2]['is_visible'])
889889
assert(ctx['head'][1][2]['is_visible'])
890-
self.assertEqual(ctx['head'][1][3]['display_value'], 1)
890+
assert(ctx['head'][1][3]['display_value'] == 1)
891891
# indices
892892
assert(ctx['body'][0][0]['is_visible'])
893893
# data
894894
assert(ctx['body'][1][2]['is_visible'])
895-
self.assertEqual(ctx['body'][1][2]['display_value'], 3)
895+
assert(ctx['body'][1][2]['display_value'] == 3)
896896
assert(ctx['body'][1][3]['is_visible'])
897-
self.assertEqual(ctx['body'][1][3]['display_value'], 4)
897+
assert(ctx['body'][1][3]['display_value'] == 4)
898898

899899
# hide top column level, which hides both columns
900900
ctx = df.style.hide_columns('b')._translate()
901-
self.assertFalse(ctx['head'][0][2]['is_visible']) # b
902-
self.assertFalse(ctx['head'][1][2]['is_visible']) # 0
903-
self.assertFalse(ctx['body'][1][2]['is_visible']) # 3
901+
assert(not ctx['head'][0][2]['is_visible']) # b
902+
assert(not ctx['head'][1][2]['is_visible']) # 0
903+
assert(not ctx['body'][1][2]['is_visible']) # 3
904904
assert(ctx['body'][0][0]['is_visible']) # index
905905

906906
# hide first column only
907907
ctx = df.style.hide_columns([('b', 0)])._translate()
908908
assert(ctx['head'][0][2]['is_visible']) # b
909-
self.assertFalse(ctx['head'][1][2]['is_visible']) # 0
910-
self.assertFalse(ctx['body'][1][2]['is_visible']) # 3
909+
assert(not ctx['head'][1][2]['is_visible']) # 0
910+
assert(not ctx['body'][1][2]['is_visible']) # 3
911911
assert(ctx['body'][1][3]['is_visible'])
912-
self.assertEqual(ctx['body'][1][3]['display_value'], 4)
912+
assert(ctx['body'][1][3]['display_value'] == 4)
913913

914914
# hide second column and index
915915
ctx = df.style.hide_columns([('b', 1)]).hide_index()._translate()
916-
self.assertFalse(ctx['body'][0][0]['is_visible']) # index
916+
assert(not ctx['body'][0][0]['is_visible']) # index
917917
assert(ctx['head'][0][2]['is_visible']) # b
918918
assert(ctx['head'][1][2]['is_visible']) # 0
919-
self.assertFalse(ctx['head'][1][3]['is_visible']) # 1
920-
self.assertFalse(ctx['body'][1][3]['is_visible']) # 4
919+
assert(not ctx['head'][1][3]['is_visible']) # 1
920+
assert(not ctx['body'][1][3]['is_visible']) # 4
921921
assert(ctx['body'][1][2]['is_visible'])
922-
self.assertEqual(ctx['body'][1][2]['display_value'], 3)
922+
assert(ctx['body'][1][2]['display_value'] == 3)
923923

924924

925925
class TestStylerMatplotlibDep(object):

0 commit comments

Comments
 (0)