Merged revisions 85209 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85209 | senthil.kumaran | 2010-10-04 11:12:58 +0530 (Mon, 04 Oct 2010) | 3 lines

  Remove the debugging print line from the test.
........
This commit is contained in:
Senthil Kumaran 2010-10-04 05:45:46 +00:00
parent 97304567a7
commit 3cc7d7ae89
1 changed files with 0 additions and 1 deletions

View File

@ -94,7 +94,6 @@ class HeaderTests(TestCase):
conn.sock = FakeSocket(None)
conn.putrequest('GET','/')
conn.putheader('Content-length', 42)
print(conn._buffer)
self.assertTrue(b'Content-length: 42' in conn._buffer)