diff --git a/tests/app/main/test_formatters.py b/tests/app/main/test_formatters.py index b48f64316..e390b9027 100644 --- a/tests/app/main/test_formatters.py +++ b/tests/app/main/test_formatters.py @@ -16,12 +16,6 @@ from app.formatters import ( convert_markdown_template ) -from tests.conftest import ( - fake_markdown_file, - fake_jinja_template, - notify_admin -) - @pytest.mark.parametrize( ("status", "notification_type", "expected"), diff --git a/tests/conftest.py b/tests/conftest.py index 9f9424b96..936bb8a79 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3595,11 +3595,13 @@ def end_to_end_authenticated_context(browser): return context + @pytest.fixture() def fake_markdown_file(): input = "#Test" return input + @pytest.fixture() def fake_jinja_template(): input = "{% if True %}True{% endif %}"