@@ -2295,7 +2295,7 @@ def test_bxp_patchartist():
2295
2295
def test_bxp_custompatchartist ():
2296
2296
_bxp_test_helper (bxp_kwargs = dict (
2297
2297
patch_artist = True ,
2298
- boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , linestyle = ':' )))
2298
+ boxprops = dict (facecolor = 'yellow' , edgecolor = 'green' , ls = ':' )))
2299
2299
2300
2300
2301
2301
@image_comparison (baseline_images = ['bxp_customoutlier' ],
@@ -2304,7 +2304,7 @@ def test_bxp_custompatchartist():
2304
2304
style = 'default' )
2305
2305
def test_bxp_customoutlier ():
2306
2306
_bxp_test_helper (bxp_kwargs = dict (
2307
- flierprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'g' )))
2307
+ flierprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'g' )))
2308
2308
2309
2309
2310
2310
@image_comparison (baseline_images = ['bxp_withmean_custompoint' ],
@@ -2314,7 +2314,7 @@ def test_bxp_customoutlier():
2314
2314
def test_bxp_showcustommean ():
2315
2315
_bxp_test_helper (bxp_kwargs = dict (
2316
2316
showmeans = True ,
2317
- meanprops = dict (linestyle = 'none' , marker = 'd' , markerfacecolor = 'green' ),
2317
+ meanprops = dict (linestyle = 'none' , marker = 'd' , mfc = 'green' ),
2318
2318
))
2319
2319
2320
2320
@@ -2324,7 +2324,7 @@ def test_bxp_showcustommean():
2324
2324
style = 'default' )
2325
2325
def test_bxp_custombox ():
2326
2326
_bxp_test_helper (bxp_kwargs = dict (
2327
- boxprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2327
+ boxprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2328
2328
2329
2329
2330
2330
@image_comparison (baseline_images = ['bxp_custommedian' ],
@@ -2333,7 +2333,7 @@ def test_bxp_custombox():
2333
2333
style = 'default' )
2334
2334
def test_bxp_custommedian ():
2335
2335
_bxp_test_helper (bxp_kwargs = dict (
2336
- medianprops = dict (linestyle = '--' , color = 'b' , linewidth = 3 )))
2336
+ medianprops = dict (linestyle = '--' , color = 'b' , lw = 3 )))
2337
2337
2338
2338
2339
2339
@image_comparison (baseline_images = ['bxp_customcap' ],
@@ -2342,7 +2342,7 @@ def test_bxp_custommedian():
2342
2342
style = 'default' )
2343
2343
def test_bxp_customcap ():
2344
2344
_bxp_test_helper (bxp_kwargs = dict (
2345
- capprops = dict (linestyle = '--' , color = 'g' , linewidth = 3 )))
2345
+ capprops = dict (linestyle = '--' , color = 'g' , lw = 3 )))
2346
2346
2347
2347
2348
2348
@image_comparison (baseline_images = ['bxp_customwhisker' ],
@@ -2351,7 +2351,7 @@ def test_bxp_customcap():
2351
2351
style = 'default' )
2352
2352
def test_bxp_customwhisker ():
2353
2353
_bxp_test_helper (bxp_kwargs = dict (
2354
- whiskerprops = dict (linestyle = '-' , color = 'm' , linewidth = 3 )))
2354
+ whiskerprops = dict (linestyle = '-' , color = 'm' , lw = 3 )))
2355
2355
2356
2356
2357
2357
@image_comparison (baseline_images = ['bxp_withnotch' ],
0 commit comments