summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_atexit.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-01-30 16:16:42 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-01-30 16:16:42 +0300
commitf115cb7032dc0a2a2fa5ef6f66167efdd6b93544 (patch)
tree15774ef9c70d72c0a1e98d52cdf925ad4008c32c /test/test_python_atexit.py
parentcb80be00a52f3e1d708dc38271a6fa23a4d1a1d2 (diff)
downloadunit-f115cb7032dc0a2a2fa5ef6f66167efdd6b93544.tar.gz
unit-f115cb7032dc0a2a2fa5ef6f66167efdd6b93544.tar.bz2
Tests: small fixes.
Diffstat (limited to 'test/test_python_atexit.py')
-rw-r--r--test/test_python_atexit.py2
1 files changed, 1 insertions, 1 deletions
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'