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

Skip to content

Commit 53f1ff2

Browse files
committed
Fix test now that we normalize property names
1 parent c72a74f commit 53f1ff2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/matplotlib/tests/test_rcparams.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ def test_validators():
305305
cycler('linestyle', ['-', '--'])),
306306
("""(cycler("color", ["r", "g", "b"]) +
307307
cycler("mew", [2, 3, 5]))""",
308-
cycler("color", 'rgb') + cycler("mew", [2, 3, 5])),
308+
(cycler("color", 'rgb') +
309+
cycler("markeredgewidth", [2, 3, 5]))),
309310
),
310311
# This is *so* incredibly important: validate_cycler() eval's
311312
# an arbitrary string! I think I have it locked down enough,

0 commit comments

Comments
 (0)