Removed my silly prints

This commit is contained in:
Gregory Holt
2010-01-21 16:26:30 +00:00
parent 1c68efeb50
commit fd746a5402

View File

@@ -721,16 +721,16 @@ class TestHttpd(LimitedTestCase):
fd = sock.makefile()
fd.write('PUT /a HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\n\r\n10\r\n0123456789abcdef\r\n0\r\n\r\n')
fd.flush()
print 'x', read_http(sock)
read_http(sock)
fd.write('PUT /b HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\n\r\n10\r\n0123456789abcdef\r\n0\r\n\r\n')
fd.flush()
print 'x', read_http(sock)
read_http(sock)
fd.write('PUT /c HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\n\r\n10\r\n0123456789abcdef\r\n0\r\n\r\n')
fd.flush()
print 'x', read_http(sock)
read_http(sock)
fd.write('PUT /a HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\n\r\n10\r\n0123456789abcdef\r\n0\r\n\r\n')
fd.flush()
print 'x', read_http(sock)
read_http(sock)
if __name__ == '__main__':