Thanks to visit codestin.com Credit goes to github.com
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 6372f1d commit c2627f0Copy full SHA for c2627f0
lib/matplotlib/tests/test_axes.py
@@ -6129,3 +6129,19 @@ def test_invisible_axes():
6129
assert fig.canvas.inaxes((200, 200)) is not None
6130
ax.set_visible(False)
6131
assert fig.canvas.inaxes((200, 200)) is None
6132
+
6133
6134
+def test_xtickcolor_is_not_markercolor():
6135
+ plt.rcParams['lines.markeredgecolor'] = 'white'
6136
+ ax = plt.axes()
6137
+ ticks = ax.xaxis.get_major_ticks()
6138
+ for tick in ticks:
6139
+ assert not tick.tick1line.get_markeredgecolor() == 'white'
6140
6141
6142
+def test_ytickcolor_is_not_markercolor():
6143
6144
6145
+ ticks = ax.yaxis.get_major_ticks()
6146
6147
0 commit comments