@@ -870,7 +870,8 @@ def test_single_date():
870
870
data1 = [- 65.54 ]
871
871
872
872
fig , ax = plt .subplots (2 , 1 )
873
- ax [0 ].plot_date (time1 + dt , data1 , 'o' , color = 'r' )
873
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
874
+ ax [0 ].plot_date (time1 + dt , data1 , 'o' , color = 'r' )
874
875
ax [1 ].plot (time1 , data1 , 'o' , color = 'r' )
875
876
876
877
@@ -6897,11 +6898,13 @@ def test_date_timezone_x():
6897
6898
# Same Timezone
6898
6899
plt .figure (figsize = (20 , 12 ))
6899
6900
plt .subplot (2 , 1 , 1 )
6900
- plt .plot_date (time_index , [3 ] * 3 , tz = 'Canada/Eastern' )
6901
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
6902
+ plt .plot_date (time_index , [3 ] * 3 , tz = 'Canada/Eastern' )
6901
6903
6902
6904
# Different Timezone
6903
6905
plt .subplot (2 , 1 , 2 )
6904
- plt .plot_date (time_index , [3 ] * 3 , tz = 'UTC' )
6906
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
6907
+ plt .plot_date (time_index , [3 ] * 3 , tz = 'UTC' )
6905
6908
6906
6909
6907
6910
@image_comparison (['date_timezone_y.png' ])
@@ -6914,12 +6917,13 @@ def test_date_timezone_y():
6914
6917
# Same Timezone
6915
6918
plt .figure (figsize = (20 , 12 ))
6916
6919
plt .subplot (2 , 1 , 1 )
6917
- plt . plot_date ([ 3 ] * 3 ,
6918
- time_index , tz = 'Canada/Eastern' , xdate = False , ydate = True )
6920
+ with pytest . warns ( mpl . MatplotlibDeprecationWarning ):
6921
+ plt . plot_date ([ 3 ] * 3 , time_index , tz = 'Canada/Eastern' , xdate = False , ydate = True )
6919
6922
6920
6923
# Different Timezone
6921
6924
plt .subplot (2 , 1 , 2 )
6922
- plt .plot_date ([3 ] * 3 , time_index , tz = 'UTC' , xdate = False , ydate = True )
6925
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
6926
+ plt .plot_date ([3 ] * 3 , time_index , tz = 'UTC' , xdate = False , ydate = True )
6923
6927
6924
6928
6925
6929
@image_comparison (['date_timezone_x_and_y.png' ], tol = 1.0 )
@@ -6932,11 +6936,13 @@ def test_date_timezone_x_and_y():
6932
6936
# Same Timezone
6933
6937
plt .figure (figsize = (20 , 12 ))
6934
6938
plt .subplot (2 , 1 , 1 )
6935
- plt .plot_date (time_index , time_index , tz = 'UTC' , ydate = True )
6939
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
6940
+ plt .plot_date (time_index , time_index , tz = 'UTC' , ydate = True )
6936
6941
6937
6942
# Different Timezone
6938
6943
plt .subplot (2 , 1 , 2 )
6939
- plt .plot_date (time_index , time_index , tz = 'US/Eastern' , ydate = True )
6944
+ with pytest .warns (mpl .MatplotlibDeprecationWarning ):
6945
+ plt .plot_date (time_index , time_index , tz = 'US/Eastern' , ydate = True )
6940
6946
6941
6947
6942
6948
@image_comparison (['axisbelow.png' ], remove_text = True )
0 commit comments