Commit 274d2ef6 authored by Denis Bilenko's avatar Denis Bilenko

disable ChunkedInputTests.test_close_before_finished for gevent.wsgi

parent 76b355a0
......@@ -803,7 +803,8 @@ class ChunkedInputTests(TestCase):
fd.write(req)
fd.close()
gevent.sleep(0.01)
self.assert_stderr_traceback(IOError, 'unexpected end of file while parsing chunked data')
if server_implements_chunked:
self.assert_stderr_traceback(IOError, 'unexpected end of file while parsing chunked data')
class Expect100ContinueTests(TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment