summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCory Benfield <lukasaoz@gmail.com>2017-04-05 13:16:33 +0100
committerCory Benfield <lukasaoz@gmail.com>2017-04-05 13:16:33 +0100
commitb278cc45e97742a6614fec3853e6074d197f265c (patch)
tree878487ac5f654784674f257a00b80245c6e43e5a
parent7d6922394084671cfe3ca177302dd84cd55d51c1 (diff)
downloadurllib3-b278cc45e97742a6614fec3853e6074d197f265c.tar.gz
Remove debugging prints
-rw-r--r--test/test_response.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/test_response.py b/test/test_response.py
index e7403323..bd55204d 100644
--- a/test/test_response.py
+++ b/test/test_response.py
@@ -202,9 +202,7 @@ class TestResponse(unittest.TestCase):
# This is necessary to make sure the "no bytes left" part of `readinto`
# gets tested.
- print("First read")
self.assertEqual(len(br.read(5)), 5)
- print("Second read")
self.assertEqual(len(br.read(5)), 5)
self.assertEqual(len(br.read(5)), 0)