8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee23d0 commit f1dfcc0Copy full SHA for f1dfcc0
lib/matplotlib/tests/test_rcparams.py
@@ -455,7 +455,6 @@ def test_if_rctemplate_is_up_to_date():
455
dep1 = mpl._all_deprecated
456
dep2 = mpl._deprecated_set
457
deprecated = list(dep1.union(dep2))
458
- #print(deprecated)
459
path_to_rc = mpl.matplotlib_fname()
460
with open(path_to_rc, "r") as f:
461
rclines = f.readlines()
@@ -501,11 +500,7 @@ def test_if_rctemplate_would_be_valid(tmpdir):
501
500
with open(fname, "w") as f:
502
f.writelines(newlines)
503
with pytest.warns(None) as record:
504
- print(fname)
505
dic = mpl.rc_params_from_file(fname,
506
fail_on_error=True,
507
use_default_template=False)
508
assert len(record) == 0
509
- #d1 = set(dic.keys())
510
- #d2 = set(matplotlib.defaultParams.keys())
511
- #print(d2-d1)
0 commit comments