8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1273dea commit 8ed9458Copy full SHA for 8ed9458
lib/matplotlib/tests/test_axes.py
@@ -6136,12 +6136,12 @@ def test_xtickcolor_is_not_markercolor():
6136
ax = plt.axes()
6137
ticks = ax.xaxis.get_major_ticks()
6138
for tick in ticks:
6139
- assert not tick.tick1line.get_markeredgecolor() == 'white'
+ assert tick.tick1line.get_markeredgecolor() != 'white'
6140
6141
6142
def test_ytickcolor_is_not_markercolor():
6143
plt.rcParams['lines.markeredgecolor'] = 'white'
6144
6145
ticks = ax.yaxis.get_major_ticks()
6146
6147
0 commit comments