Run lint with default line length
This commit is contained in:
parent
1a8ddbdac6
commit
75dff5a731
2 changed files with 5 additions and 2 deletions
|
|
@ -1 +1 @@
|
|||
<svg height='50' width='200'><text x='0' y='25'>{{ text }}</text></svg>
|
||||
<svg height='50' width='200'><text x='0' y='25'>{{ text }}</text></svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 71 B After Width: | Height: | Size: 72 B |
|
|
@ -120,7 +120,10 @@ def test_escaping_svg(app, client):
|
|||
return flask.render_template("escaping_template.svg", text="<test>")
|
||||
|
||||
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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue