fix string concats left over by black
This commit is contained in:
parent
3db4697959
commit
53c893b646
10 changed files with 17 additions and 18 deletions
|
|
@ -1726,7 +1726,7 @@ def test_routing_redirect_debugging(app, client):
|
|||
with pytest.raises(AssertionError) as e:
|
||||
client.post("/foo", data={})
|
||||
assert "http://localhost/foo/" in str(e)
|
||||
assert ("Make sure to directly send " "your POST-request to this URL") in str(e)
|
||||
assert ("Make sure to directly send your POST-request to this URL") in str(e)
|
||||
|
||||
rv = client.get("/foo", data={}, follow_redirects=True)
|
||||
assert rv.data == b"success"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue