Run lint with default line length
This commit is contained in:
parent
1a8ddbdac6
commit
75dff5a731
2 changed files with 5 additions and 2 deletions
|
|
@ -120,7 +120,10 @@ def test_escaping_svg(app, client):
|
||||||
return flask.render_template("escaping_template.svg", text="<test>")
|
return flask.render_template("escaping_template.svg", text="<test>")
|
||||||
|
|
||||||
rv = client.get("/")
|
rv = client.get("/")
|
||||||
assert rv.data == b"<svg height='50' width='200'><text x='0' y='25'><test></text></svg>"
|
assert (
|
||||||
|
rv.data
|
||||||
|
== b"<svg height='50' width='200'><text x='0' y='25'><test></text></svg>"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_macros(app, req_ctx):
|
def test_macros(app, req_ctx):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue