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	Tue May 21 17:29:05 2019 +0300
+++ b/uwsgi.t	Thu May 23 17:58:42 2019 +0300
@@ -61,7 +61,7 @@
 
 def application(env, start_response):
     start_response('200 OK', [('Content-Type','text/plain')])
-    return "SEE-THIS"
+    return b"SEE-THIS"
 
 END