Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c9f38ce

Browse files
committed
TST: fix alias collision test
1 parent 6db04da commit c9f38ce

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

lib/matplotlib/tests/test_cycles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def test_property_collision_plot():
129129
fig, ax = plt.subplots()
130130
ax.set_prop_cycle('linewidth', [2, 4])
131131
for c in range(1, 4):
132-
ax.plot(np.arange(10), c * np.arange(10), lw=0.1)
132+
ax.plot(np.arange(10), c * np.arange(10), lw=0.1, color='k')
133133
ax.plot(np.arange(10), 4 * np.arange(10))
134134
ax.plot(np.arange(10), 5 * np.arange(10))
135135

0 commit comments

Comments
 (0)