summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_atexit.py
diff options
context:
space:
mode:
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'