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

Skip to content

Commit 648d3ea

Browse files
committed
Made the linewidth thicker for a test
1 parent f443629 commit 648d3ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

6.64 KB
Loading

lib/matplotlib/tests/test_cycles.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ def test_fillcycle_basic():
4949
cycler('linestyle', ['-', '--', ':']))
5050
xs = np.arange(10)
5151
ys = 0.25 * xs**.5 + 2
52-
ax.fill(xs, ys, label='red, x')
52+
ax.fill(xs, ys, label='red, xx', linewidth=3)
5353
ys = 0.45 * xs**.5 + 3
54-
ax.fill(xs, ys, label='green, circle')
54+
ax.fill(xs, ys, label='green, circle', linewidth=3)
5555
ys = 0.65 * xs**.5 + 4
56-
ax.fill(xs, ys, label='yellow, cross')
56+
ax.fill(xs, ys, label='yellow, cross', linewidth=3)
5757
ys = 0.85 * xs**.5 + 5
58-
ax.fill(xs, ys, label='red2, xx')
58+
ax.fill(xs, ys, label='red2, xx', linewidth=3)
5959
ax.legend(loc='upper left')
6060

6161

0 commit comments

Comments
 (0)