8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22a8fcf commit fd687a9Copy full SHA for fd687a9
lib/matplotlib/tests/test_rcparams.py
@@ -657,14 +657,14 @@ def test_rcparams_path_sketch_from_file(tmp_path, value):
657
658
659
@pytest.mark.parametrize('group, option, alias, value', [
660
- ('lines', 'linewidth', 'lw', 3),
661
- ('lines', 'linestyle', 'ls', 'dashed'),
662
- ('lines', 'color', 'c', 'white'),
663
- ('axes', 'facecolor', 'fc', 'black'),
664
- ('figure', 'edgecolor', 'ec', 'magenta'),
665
- ('lines', 'markeredgewidth', 'mew', 1.5),
666
- ('patch', 'antialiased', 'aa', False),
667
- ('font', 'sans-serif', 'sans', ["Verdana"])
+ ('lines', 'linewidth', 'lw', 3),
+ ('lines', 'linestyle', 'ls', 'dashed'),
+ ('lines', 'color', 'c', 'white'),
+ ('axes', 'facecolor', 'fc', 'black'),
+ ('figure', 'edgecolor', 'ec', 'magenta'),
+ ('lines', 'markeredgewidth', 'mew', 1.5),
+ ('patch', 'antialiased', 'aa', False),
+ ('font', 'sans-serif', 'sans', ["Verdana"])
668
])
669
def test_rc_aliases(group, option, alias, value):
670
rc_kwargs = {alias: value,}
0 commit comments