8000 Reverting Changes · matplotlib/matplotlib@921ebda · GitHub
[go: up one dir, main page]

Skip to content

Commit 921ebda

Browse files
committed
Reverting Changes
1 parent 94bfa74 commit 921ebda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/tests/test_style.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,15 @@ def test_alias(equiv_styles):
165165
def test_xkcd_no_cm():
166166
assert mpl.rcParams["path.sketch"] is None
167167
plt.xkcd()
168-
assert mpl.rcParams["path.sketch"] == (1, 100, 2, 0)
168+
assert mpl.rcParams["path.sketch"] == (1, 100, 2, -1)
169169
np.testing.break_cycles()
170-
assert mpl.rcParams["path.sketch"] == (1, 100, 2, 0)
170+
assert mpl.rcParams["path.sketch"] == (1, 100, 2, -1)
171171

172172

173173
def test_xkcd_cm():
174174
assert mpl.rcParams["path.sketch"] is None
175175
with plt.xkcd():
176-
assert mpl.rcParams["path.sketch"] == (1, 100, 2, 0)
176+
assert mpl.rcParams["path.sketch"] == (1, 100, 2, -1)
177177
assert mpl.rcParams["path.sketch"] is None
178178

179179

0 commit comments

Comments
 (0)
0