From 1158e229589f39a140829bbd02e2f721ea9b5d26 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 6 Feb 2015 18:20:17 +0100 Subject: [PATCH] Fix test under Python 3 --- tests/test_basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index d6fe32fb..db8a7374 100644 --- a/tests/test_basic.py +++ b/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