@@ -867,7 +867,7 @@ def test_plot_bar_label_count_expected_success():
867867 df .plot (subplots = [("A" , "B" , "D" )], kind = "bar" , title = ["A&B&D" , "C" ])
868868
869869
870- def testhhh_change_scatter_markersize_future_warning ():
870+ def test_change_scatter_markersize_future_warning ():
871871 # GH 54204
872872 # Will raise FutureWarning if s not provided to df.plot.scatter
873873 df = DataFrame (data = {"x" : [1 , 2 , 3 ], "y" : [1 , 2 , 3 ]})
@@ -882,7 +882,7 @@ def testhhh_change_scatter_markersize_future_warning():
882882@pytest .mark .filterwarnings (
883883 "ignore:The default of s=20 will be changed:pandas.errors.PandasFutureWarning"
884884)
885- def testhhh_scatter_markersize_same_default_with_rcparams ():
885+ def test_scatter_markersize_same_default_with_rcparams ():
886886 # GH 54204
887887 # Ensure default markersize is still 20 if no rcparams
888888 df = DataFrame (data = {"x" : [1 , 2 , 3 ], "y" : [1 , 2 , 3 ]})
@@ -897,7 +897,7 @@ def testhhh_scatter_markersize_same_default_with_rcparams():
897897@pytest .mark .filterwarnings (
898898 "ignore:The default of s=20 will be changed:pandas.errors.PandasFutureWarning"
899899)
900- def testhhh_scatter_markersize_same_default_without_rcparams ():
900+ def test_scatter_markersize_same_default_without_rcparams ():
901901 # GH 54204
902902 # Ensure default markersize is still 20 if no rcparams
903903 df = DataFrame (data = {"x" : [1 , 2 , 3 ], "y" : [1 , 2 , 3 ]})
0 commit comments