Browse Source

Fix assertion error

pull/1165/head
Markus Unterwaditzer 10 years ago
parent
commit
7e8f1053bb
  1. 2
      tests/test_appctx.py

2
tests/test_appctx.py

@ -111,7 +111,7 @@ class TestAppContext(TestFlask):
c = app.test_client()
res = c.get('/')
assert res.status_code == 200
assert res.data == u''
assert res.data == b''
assert called == ['request', 'app']

Loading…
Cancel
Save