diff --git a/tests/templates/escaping_template.svg b/tests/templates/escaping_template.svg index 280402dd..514d2972 100644 --- a/tests/templates/escaping_template.svg +++ b/tests/templates/escaping_template.svg @@ -1 +1 @@ -{{ text }} \ No newline at end of file +{{ text }} diff --git a/tests/test_templating.py b/tests/test_templating.py index 3acdbc2e..890098ce 100644 --- a/tests/test_templating.py +++ b/tests/test_templating.py @@ -120,7 +120,10 @@ def test_escaping_svg(app, client): return flask.render_template("escaping_template.svg", text="") rv = client.get("/") - assert rv.data == b"<test>" + assert ( + rv.data + == b"<test>" + ) def test_macros(app, req_ctx):