summaryrefslogtreecommitdiffhomepage
path: root/test/python/close/wsgi.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-04-05 17:55:06 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-04-05 17:55:06 +0300
commitf6c3ef7ed3efd6f63ef55a117fe475bd369d248b (patch)
treed6cf95d43ef019925353131c15ee5033c4f92f4c /test/python/close/wsgi.py
parent2f3b9d458328c7c96f91259c1892810c16cbccdd (diff)
downloadunit-f6c3ef7ed3efd6f63ef55a117fe475bd369d248b.tar.gz
unit-f6c3ef7ed3efd6f63ef55a117fe475bd369d248b.tar.bz2
Tests: added Python test with not iterable object.
Diffstat (limited to 'test/python/close/wsgi.py')
-rw-r--r--test/python/close/wsgi.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/python/close/wsgi.py b/test/python/close/wsgi.py
index f80a34d7..c86a6097 100644
--- a/test/python/close/wsgi.py
+++ b/test/python/close/wsgi.py
@@ -5,6 +5,7 @@ class application:
def __iter__(self):
self.start('200', [(('Content-Length', '0'))])
+ yield b''
def close(self):
self.environ['wsgi.errors'].write('Close called.')