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 4ca96a4 commit 0a1beceCopy full SHA for 0a1bece
lib/matplotlib/tests/test_rcparams.py
@@ -425,7 +425,6 @@ def test_if_rctemplate_is_up_to_date():
425
dep1 = mpl._all_deprecated
426
dep2 = mpl._deprecated_set
427
deprecated = list(dep1.union(dep2))
428
- #print(deprecated)
429
path_to_rc = mpl.matplotlib_fname()
430
with open(path_to_rc, "r") as f:
431
rclines = f.readlines()
@@ -471,11 +470,7 @@ def test_if_rctemplate_would_be_valid(tmpdir):
471
470
with open(fname, "w") as f:
472
f.writelines(newlines)
473
with pytest.warns(None) as record:
474
- print(fname)
475
dic = mpl.rc_params_from_file(fname,
476
fail_on_error=True,
477
use_default_template=False)
478
assert len(record) == 0
479
- #d1 = set(dic.keys())
480
- #d2 = set(matplotlib.defaultParams.keys())
481
- #print(d2-d1)
0 commit comments