changeset 1480:d23d959713b5

Tests: Python 3.7 (PEP 3333) compatibility in uwsgi tests.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 23 May 2019 17:58:42 +0300
parents fc3722dd8862
children 06fbf6269f38
files uwsgi.t
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/uwsgi.t
+++ b/uwsgi.t
@@ -61,7 +61,7 @@ EOF
 
 def application(env, start_response):
     start_response('200 OK', [('Content-Type','text/plain')])
-    return "SEE-THIS"
+    return b"SEE-THIS"
 
 END