diff options
-rw-r--r-- | tests/test_lint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_lint.py b/tests/test_lint.py index 2f98f4e..3d23491 100644 --- a/tests/test_lint.py +++ b/tests/test_lint.py @@ -36,7 +36,8 @@ def application(environ, start_response): resp.body = env_input.readline(len_body) elif req.path_info == '/read_lines': resp.body = b'-'.join(env_input.readlines(len_body)) - + elif req.path_info == '/close': + resp.body = env_input.close() return resp(environ, start_response) |