Browse Source

Fix test under Python 3

pull/1343/head
Markus Unterwaditzer 10 years ago
parent
commit
1158e22958
  1. 2
      tests/test_basic.py

2
tests/test_basic.py

@ -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

Loading…
Cancel
Save