diff --git a/test/test_replacements.py b/test/test_replacements.py index be6b0f0..c471da0 100644 --- a/test/test_replacements.py +++ b/test/test_replacements.py @@ -52,10 +52,6 @@ def uses_defaults_source(): with open('uses_replacements_default/source.md', "r", encoding="utf-8") as f: yield f.read() -# @pytest.fixture(scope='class') -# def html_using_defaults(): -# with open('uses_replacements_default/result.html', "r", encoding="utf-8") as f: -# yield f.read() @pytest.fixture(scope='class') def html_using_defaults(course): @@ -74,11 +70,6 @@ def uses_custom_source(): with open('uses_replacements_custom/source.md', "r", encoding="utf-8") as f: yield f.read() -# @pytest.fixture(scope='class') -# def html_using_custom(): -# with open('uses_replacements_custom/result.html', "r", encoding="utf-8") as f: -# yield f.read() - @pytest.fixture(scope='class') def html_using_custom(course): a = course.get_pages(search_term = 'Test replacements with custom replacements file')[0]