Skip to content

Commit

Permalink
fix mako template test for windows
Browse files Browse the repository at this point in the history
Signed-off-by: Janek Nouvertné <[email protected]>
  • Loading branch information
provinzkraut committed Sep 17, 2023
1 parent 771e671 commit 921f83a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/examples/test_templating/test_returning_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_returning_templates_jinja():
def test_returning_templates_mako():
with TestClient(mako_app) as client:
response = client.get("/", params={"name": "Mako"})
assert response.text == "Hello <strong>Mako</strong>\n"
assert response.text.strip() == "Hello <strong>Mako</strong>"


def test_returning_templates_minijinja():
Expand Down

0 comments on commit 921f83a

Please sign in to comment.