Skip to content

Commit f200920

Browse files
authored
Updated baseline_images of xkcd and xkcd_marker
1 parent befe5d2 commit f200920

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
Loading

lib/matplotlib/tests/test_path.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def test_xkcd():
248248
x = np.linspace(0, 2 * np.pi, 100)
249249
y = np.sin(x)
250250

251-
with plt.xkcd(seed=0):
251+
with plt.xkcd():
252252
fig, ax = plt.subplots()
253253
ax.plot(x, y)
254254

@@ -262,7 +262,7 @@ def test_xkcd_marker():
262262
y2 = 5 - x
263263
y3 = 2.5 * np.ones(8)
264264

265-
with plt.xkcd(seed=-1):
265+
with plt.xkcd():
266266
fig, ax = plt.subplots()
267267
ax.plot(x, y1, '+', ms=10)
268268
ax.plot(x, y2, 'o', ms=10)

0 commit comments

Comments
 (0)