make compatible tests

This commit is contained in:
Nickolai Novik
2017-03-22 00:10:14 +02:00
parent 6e4355ce3c
commit d652f29df5
2 changed files with 4 additions and 4 deletions

View File

@@ -116,14 +116,14 @@ def test_forget(make_app, test_client):
resp = yield from client.post('/login')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
txt = yield from resp.text()
assert 'Andrew' == txt
yield from resp.release()
resp = yield from client.post('/logout')
assert 200 == resp.status
assert resp.url.endswith('/')
assert str(resp.url).endswith('/')
txt = yield from resp.text()
assert '' == txt
yield from resp.release()