@@ -2241,7 +2241,7 @@ def test_bxp_patchartist():
2241
2241
def test_bxp_custompatchartist ():
2242
2242
_bxp_test_helper (bxp_kwargs = dict (
2243
2243
patch_artist = True ,
2244
- boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , linestyle = ':' )))
2244
+ boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , ls = ':' )))
2245
2245
2246
2246
2247
2247
@image_comparison (baseline_images = ['bxp_customoutlier' ],
@@ -2250,7 +2250,7 @@ def test_bxp_custompatchartist():
2250
2250
style = 'default' )
2251
2251
def test_bxp_customoutlier ():
2252
2252
_bxp_test_helper (bxp_kwargs = dict (
2253
- flierprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'g' )))
2253
+ flierprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'g' )))
2254
2254
2255
2255
2256
2256
@image_comparison (baseline_images = ['bxp_withmean_custompoint' ],
@@ -2260,7 +2260,7 @@ def test_bxp_customoutlier():
2260
2260
def test_bxp_showcustommean ():
2261
2261
_bxp_test_helper (bxp_kwargs = dict (
2262
2262
showmeans = True ,
2263
- meanprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'green' ),
2263
+ meanprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'green' ),
2264
2264
))
2265
2265
2266
2266
@@ -2270,7 +2270,7 @@ def test_bxp_showcustommean():
2270
2270
style = 'default' )
2271
2271
def test_bxp_custombox ():
2272
2272
_bxp_test_helper (bxp_kwargs = dict (
2273
- boxprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2273
+ boxprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2274
2274
2275
2275
2276
2276
@image_comparison (baseline_images = ['bxp_custommedian' ],
@@ -2279,7 +2279,7 @@ def test_bxp_custombox():
2279
2279
style = 'default' )
2280
2280
def test_bxp_custommedian ():
2281
2281
_bxp_test_helper (bxp_kwargs = dict (
2282
- medianprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2282
+ medianprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2283
2283
2284
2284
2285
2285
@image_comparison (baseline_images = ['bxp_customcap' ],
@@ -2288,7 +2288,7 @@ def test_bxp_custommedian():
2288
2288
style = 'default' )
2289
2289
def test_bxp_customcap ():
2290
2290
_bxp_test_helper (bxp_kwargs = dict (
2291
- capprops = dict (linestyle = '--' , color = 'g' , linewidth = 3 )))
2291
+ capprops = dict (linestyle = '--' , color = 'g' , lw = 3 )))
2292
2292
2293
2293
2294
2294
@image_comparison (baseline_images = ['bxp_customwhisker' ],
@@ -2297,7 +2297,7 @@ def test_bxp_customcap():
2297
2297
style = 'default' )
2298
2298
def test_bxp_customwhisker ():
2299
2299
_bxp_test_helper (bxp_kwargs = dict (
2300
- whiskerprops = dict (linestyle = '-' , color = 'm' , linewidth = 3 )))
2300
+ whiskerprops = dict (linestyle = '-' , color = 'm' , lw = 3 )))
2301
2301
2302
2302
2303
2303
@image_comparison (baseline_images = ['bxp_withnotch' ],
0 commit comments