Skip to content

Commit 5110933

Browse files
authored
Resolve merge conflict.
1 parent 2b93161 commit 5110933

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6452,24 +6452,6 @@ def test_pandas_bar_align_center(pd):
64526452
fig.canvas.draw()
64536453

64546454

6455-
def test_tick_apply_tickdir_deprecation():
6456-
# Remove this test when the deprecation expires.
6457-
import matplotlib.axis as maxis
6458-
ax = plt.axes()
6459-
6460-
tick = maxis.XTick(ax, 0)
6461-
with pytest.warns(MatplotlibDeprecationWarning,
6462-
match="The apply_tickdir function was deprecated in "
6463-
"Matplotlib 3.5"):
6464-
tick.apply_tickdir('out')
6465-
6466-
tick = maxis.YTick(ax, 0)
6467-
with pytest.warns(MatplotlibDeprecationWarning,
6468-
match="The apply_tickdir function was deprecated in "
6469-
"Matplotlib 3.5"):
6470-
tick.apply_tickdir('out')
6471-
6472-
64736455
def test_axis_get_tick_params():
64746456
axis = plt.subplot().yaxis
64756457
initial_major_style_translated = {**axis.get_tick_params(which='major')}

0 commit comments

Comments
 (0)