Fix test under Python 3

This commit is contained in:
Markus Unterwaditzer 2015-02-06 18:20:17 +01:00
parent 08b6c72cd9
commit bf3f336306

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