This commit is contained in:
Kovid Goyal 2015-05-22 17:58:05 +05:30
parent a02a437b1c
commit f8974e3a4c

View File

@ -273,6 +273,7 @@ class TestHTTP(BaseTest):
r = conn.getresponse() r = conn.getresponse()
self.ae(data, r.read()) self.ae(data, r.read())
# Now try it without sendfile
server.loop.opts.use_sendfile ^= True server.loop.opts.use_sendfile ^= True
conn = server.connect() conn = server.connect()
# }}} # }}}