Skip to content

Commit 37fe105

Browse files
committed
added border
1 parent 8e650d4 commit 37fe105

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/tests/test_path.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def test_xkcd_artist():
280280
rcParams['path.sketch'] = (2, 120, 40)
281281
artist.Artist().set_sketch_params(seed=19680801)
282282
fig, ax = plt.subplots()
283-
ax.pie([10, 20, 30, 40])
283+
ax.pie([10, 20, 30, 40], wedgeprops={'edgecolor': 'black'})
284284
ax.plot()
285285

286286

@@ -290,7 +290,7 @@ def test_xkcd_seed():
290290
rcParams['path.sketch'] = (2, 120, 40)
291291
rcParams['path.sketch_seed'] = 2000
292292
fig, ax = plt.subplots()
293-
ax.pie([10, 20, 30, 40])
293+
ax.pie([10, 20, 30, 40], wedgeprops={'edgecolor': 'black'})
294294
ax.plot()
295295

296296

0 commit comments

Comments
 (0)