From 5cdae44edea5f766cae9bf3b20dd6fcad5b705ab Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 21 Apr 2015 16:37:43 +0200 Subject: Port recursive to Python 3 HTTP body is bytes --- tests/test_recursive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_recursive.py b/tests/test_recursive.py index 8d2f96b..7664382 100644 --- a/tests/test_recursive.py +++ b/tests/test_recursive.py @@ -5,10 +5,10 @@ from paste.recursive import RecursiveMiddleware, ForwardRequestException def error_docs_app(environ, start_response): if environ['PATH_INFO'] == '/not_found': start_response("404 Not found", [('Content-type', 'text/plain')]) - return ['Not found'] + return [b'Not found'] elif environ['PATH_INFO'] == '/error': start_response("200 OK", [('Content-type', 'text/plain')]) - return ['Page not found'] + return [b'Page not found'] elif environ['PATH_INFO'] == '/recurse': raise ForwardRequestException('/recurse') else: -- cgit v1.2.1