@@ -683,13 +683,6 @@ def test_bar_plt_xaxis_intervalrange(self):
683
683
)
684
684
685
685
686
- def test_plot_bar_label_count_default ():
687
- df = DataFrame (
688
- [(30 , 10 , 10 , 10 ), (20 , 20 , 20 , 20 ), (10 , 30 , 30 , 10 )], columns = list ("ABCD" )
689
- )
690
- df .plot (subplots = True , kind = "bar" , title = ["A" , "B" , "C" , "D" ])
691
-
692
-
693
686
@pytest .fixture
694
687
def df_bar_data ():
695
688
return np .random .default_rng (3 ).integers (0 , 100 , 5 )
@@ -823,6 +816,15 @@ def test_bar_2_subplots_1_triple_stacked(df_bar_data, df_bar_df, subplot_divisio
823
816
_df_bar_subplot_checker (
824
817
df_bar_data , df_bar_df , subplot_data_df_list [i ], subplot_division [i ]
825
818
)
819
+
820
+
821
+ def test_plot_bar_label_count_default ():
822
+ df = DataFrame (
823
+ [(30 , 10 , 10 , 10 ), (20 , 20 , 20 , 20 ), (10 , 30 , 30 , 10 )], columns = list ("ABCD" )
824
+ )
825
+ df .plot (subplots = True , kind = "bar" , title = ["A" , "B" , "C" , "D" ])
826
+
827
+
826
828
def test_plot_bar_label_count_expected_fail ():
827
829
df = DataFrame (
828
830
[(30 , 10 , 10 , 10 ), (20 , 20 , 20 , 20 ), (10 , 30 , 30 , 10 )], columns = list ("ABCD" )
0 commit comments