Fix test under Python 3

This commit is contained in:
Markus Unterwaditzer 2015-02-06 18:20:17 +01:00
parent 85b20f8d49
commit 1158e22958

View file

@ -589,7 +589,7 @@ def test_request_preprocessing_early_return():
return "damnit"
rv = app.test_client().get('/').data.strip()
assert rv == 'hello'
assert rv == b'hello'
assert not evts