diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-01-30 16:16:42 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-01-30 16:16:42 +0300 |
commit | f115cb7032dc0a2a2fa5ef6f66167efdd6b93544 (patch) | |
tree | 15774ef9c70d72c0a1e98d52cdf925ad4008c32c /test/test_python_atexit.py | |
parent | cb80be00a52f3e1d708dc38271a6fa23a4d1a1d2 (diff) | |
download | unit-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.py | 2 |
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' |