@@ -1230,7 +1230,7 @@ def test_subplots_timeseries(self):
1230
1230
self ._check_visible (ax .get_xticklabels (minor = True ))
1231
1231
self ._check_visible (ax .xaxis .get_label ())
1232
1232
self ._check_visible (ax .get_yticklabels ())
1233
- self ._check_ticks_props (ax , xlabelsize = 7 , xrot = 45 )
1233
+ self ._check_ticks_props (ax , xlabelsize = 7 , xrot = 45 , ylabelsize = 7 )
1234
1234
1235
1235
def test_subplots_layout (self ):
1236
1236
# GH 6667
@@ -1691,13 +1691,13 @@ def test_plot_bar(self):
1691
1691
self ._check_ticks_props (ax , xrot = 90 )
1692
1692
1693
1693
ax = df .plot (kind = 'bar' , rot = 35 , fontsize = 10 )
1694
- self ._check_ticks_props (ax , xrot = 35 , xlabelsize = 10 )
1694
+ self ._check_ticks_props (ax , xrot = 35 , xlabelsize = 10 , ylabelsize = 10 )
1695
1695
1696
1696
ax = _check_plot_works (df .plot , kind = 'barh' )
1697
1697
self ._check_ticks_props (ax , yrot = 0 )
1698
1698
1699
1699
ax = df .plot (kind = 'barh' , rot = 55 , fontsize = 11 )
1700
- self ._check_ticks_props (ax , yrot = 55 , ylabelsize = 11 )
1700
+ self ._check_ticks_props (ax , yrot = 55 , ylabelsize = 11 , xlabelsize = 11 )
1701
1701
1702
1702
def _check_bar_alignment (self , df , kind = 'bar' , stacked = False ,
1703
1703
subplots = False , align = 'center' ,
@@ -2061,7 +2061,7 @@ def test_kde_df(self):
2061
2061
self ._check_ticks_props (ax , xrot = 0 )
2062
2062
2063
2063
ax = df .plot (kind = 'kde' , rot = 20 , fontsize = 5 )
2064
- self ._check_ticks_props (ax , xrot = 20 , xlabelsize = 5 )
2064
+ self ._check_ticks_props (ax , xrot = 20 , xlabelsize = 5 , ylabelsize = 5 )
2065
2065
2066
2066
axes = _check_plot_works (df .plot , kind = 'kde' , subplots = True )
2067
2067
self ._check_axes_shape (axes , axes_num = 4 , layout = (4 , 1 ))
0 commit comments