From f115cb7032dc0a2a2fa5ef6f66167efdd6b93544 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 30 Jan 2018 16:16:42 +0300 Subject: Tests: small fixes. --- test/test_python_atexit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_python_atexit.py') diff --git a/test/test_python_atexit.py b/test/test_python_atexit.py index 82fa9a39..6c1b6365 100644 --- a/test/test_python_atexit.py +++ b/test/test_python_atexit.py @@ -21,7 +21,7 @@ def create_file(): atexit.register(create_file) def application(env, start_response): - start_response('200 OK', [('Content-Type','text/html')]) + start_response('200', [('Content-Length', '0')]) return [] """ % (self.testdir + '/atexit'), 'py_app' -- cgit