Style correction on conftest and test_formatters

This commit is contained in:
Anastasia Gradova
2023-12-26 22:10:50 -07:00
parent a5ec03302e
commit c06d752f65
2 changed files with 2 additions and 6 deletions

View File

@@ -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"),

View File

@@ -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 %}"