Remove the debugging print line from the test.

This commit is contained in:
Senthil Kumaran 2010-10-04 05:42:58 +00:00
parent e0941c5bd2
commit f580adee27
1 changed files with 0 additions and 1 deletions

View File

@ -95,7 +95,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)