File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -9312,16 +9312,13 @@ def test_violinplot_orientation(fig_test, fig_ref):
9312
9312
9313
9313
plt .close ()
9314
9314
9315
- # Deprecation of `vert: bool` keyword
9316
- with pytest .warns (mpl .MatplotlibDeprecationWarning ,
9317
- match = 'vert: bool was deprecated in Matplotlib 3.10' ):
9318
- # Compare images between a figure that
9319
- # uses vert and one that uses orientation.
9320
- ax_ref = fig_ref .subplots ()
9321
- ax_ref .violinplot (all_data , vert = False )
9315
+ # Compare images between a figure that
9316
+ # uses vert and one that uses orientation.
9317
+ ax_ref = fig_ref .subplots ()
9318
+ ax_ref .violinplot (all_data , vert = False )
9322
9319
9323
- ax_test = fig_test .subplots ()
9324
- ax_test .violinplot (all_data , orientation = 'horizontal' )
9320
+ ax_test = fig_test .subplots ()
9321
+ ax_test .violinplot (all_data , orientation = 'horizontal' )
9325
9322
9326
9323
9327
9324
@check_figures_equal (extensions = ['png' ])
You can’t perform that action at this time.
0 commit comments