style update

This commit is contained in:
Anastasia Gradova
2024-01-03 22:08:42 -07:00
parent 7a1d9cf705
commit df4ee859e5

View File

@@ -183,6 +183,7 @@ def test_markdown_format(fake_markdown_file):
with app.app_context():
assert convert_markdown_template(fake_markdown_file, test=True) == "<h1>Test</h1>"
@pytest.mark.usefixtures("fake_soup_template")
def test_soup_format(fake_soup_template):
assert apply_html_class([['h1', 'testClass']], fake_soup_template) == '<h1 class="testClass">Test</h1>'