@@ -734,7 +734,6 @@ def test_bar_1_subplot_1_double_stacked(self, BSS_data, BSS_df):
734734 subplot_data_df_list = _BSS_xyheight_from_ax_helper (BSS_data , ax , subplot_division )
735735 for i in range (len (subplot_data_df_list )):
736736 _BSS_subplot_checker (BSS_data , BSS_df_trimmed , subplot_data_df_list [i ], subplot_division [i ])
737- plt .savefig ("1s1d.png" )
738737
739738
740739 def test_bar_2_subplot_1_double_stacked (self , BSS_data , BSS_df ):
@@ -745,20 +744,17 @@ def test_bar_2_subplot_1_double_stacked(self, BSS_data, BSS_df):
745744 subplot_data_df_list = _BSS_xyheight_from_ax_helper (BSS_data , ax , subplot_division )
746745 for i in range (len (subplot_data_df_list )):
747746 _BSS_subplot_checker (BSS_data , BSS_df_trimmed , subplot_data_df_list [i ], subplot_division [i ])
748- plt .savefig ("2s1d.png" )
749747
750748 def test_bar_2_subplot_2_double_stacked (self , BSS_data , BSS_df ):
751749 subplot_division = [('A' , 'D' ), ('C' , 'B' )]
752750 ax = BSS_df .plot (subplots = subplot_division , kind = "bar" , stacked = True )
753751 subplot_data_df_list = _BSS_xyheight_from_ax_helper (BSS_data , ax , subplot_division )
754752 for i in range (len (subplot_data_df_list )):
755753 _BSS_subplot_checker (BSS_data , BSS_df , subplot_data_df_list [i ], subplot_division [i ])
756- plt .savefig ("2s2d.png" )
757754
758755 def test_bar_2_subplots_1_triple_stacked (self , BSS_data , BSS_df ):
759756 subplot_division = [('A' , 'D' , 'C' )]
760757 ax = BSS_df .plot (subplots = subplot_division , kind = "bar" , stacked = True )
761758 subplot_data_df_list = _BSS_xyheight_from_ax_helper (BSS_data , ax , subplot_division )
762759 for i in range (len (subplot_data_df_list )):
763- _BSS_subplot_checker (BSS_data , BSS_df , subplot_data_df_list [i ], subplot_division [i ])
764- plt .savefig ("2s1t.png" )
760+ _BSS_subplot_checker (BSS_data , BSS_df , subplot_data_df_list [i ], subplot_division [i ])
0 commit comments