Commit c0743046 authored by Denis Bilenko's avatar Denis Bilenko

test__pywsgi.py: remove server_supports_pipeline

parent 1d5ede8f
......@@ -39,7 +39,6 @@ from gevent import socket
CONTENT_LENGTH = 'Content-Length'
CONN_ABORTED_ERRORS = []
server_implements_chunked = True
server_supports_pipeline = True
server_implements_100continue = True
DEBUG = '-v' in sys.argv
......@@ -261,10 +260,6 @@ class CommonTests(TestCase):
except AssertionError, ex:
if ex is not exception:
raise
if server_supports_pipeline:
raise
else:
print 'PipelineNotImplementedWarning'
def test_connection_close(self):
fd = self.connect().makefile(bufsize=1)
......
......@@ -5,7 +5,6 @@ from test__pywsgi import *
del TestHttps
test__pywsgi.server_implements_chunked = False
test__pywsgi.server_supports_pipeline = gevent.core.get_version()[1] == '2'
test__pywsgi.server_implements_100continue = False
TestCase.get_wsgi_module = lambda *args: wsgi
......
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