From 7e8f1053bb07f4f73914b5784a87de6dcaea6bcb Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 3 Sep 2014 20:21:47 +0200 Subject: [PATCH] Fix assertion error --- tests/test_appctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_appctx.py b/tests/test_appctx.py index 0c291b87..0146583f 100644 --- a/tests/test_appctx.py +++ b/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']