From ccb72aee2a7afac2ad8a88dffbc1985761019eb0 Mon Sep 17 00:00:00 2001 From: Allison Beemer <66966224+anbeemer@users.noreply.github.com> Date: Wed, 17 Jul 2024 12:31:32 -0500 Subject: [PATCH] Removed some comments in test_replacements --- test/test_replacements.py | 9 --------- 1 file changed, 9 deletions(-) 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]