Commit 50ecd324 authored by Denis Bilenko's avatar Denis Bilenko

wsgi_test.py: remove invalid assert

parent 41a695a7
...@@ -468,7 +468,6 @@ class TestInputIter(TestInputReadline): ...@@ -468,7 +468,6 @@ class TestInputIter(TestInputReadline):
def application(self, environ, start_response): def application(self, environ, start_response):
input = environ['wsgi.input'] input = environ['wsgi.input']
lines = [] lines = []
assert hasattr(input, 'next'), 'wsgi.input does not have next() method'
for line in input: for line in input:
if not line: if not line:
break break
......
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