update test expectations for proxy state

expect app.base_url instead of unconditional ‘/‘
This commit is contained in:
Min RK
2018-06-27 12:46:13 +02:00
parent 7bd1e387df
commit 31807929cb
2 changed files with 5 additions and 5 deletions

View File

@@ -1055,7 +1055,7 @@ def test_get_proxy(app):
r = yield api_request(app, 'proxy')
r.raise_for_status()
reply = r.json()
assert list(reply.keys()) == ['/']
assert list(reply.keys()) == [app.base_url]
@mark.gen_test