Skip to content

Commit

Permalink
Fixing test to not preload content. (urllib3#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
shazow committed Dec 10, 2011
1 parent d5550a9 commit a540a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/with_dummyserver/test_connectionpool.py
Expand Up @@ -303,7 +303,7 @@ def test_release_conn_parameter(self):
self.assertEqual(pool.pool.qsize(), MAXSIZE)

# Make request without releasing connection
pool.urlopen('GET', '/', release_conn=False)
pool.request('GET', '/', release_conn=False, preload_content=False)
self.assertEqual(pool.pool.qsize(), MAXSIZE-1)


Expand Down

0 comments on commit a540a62

Please sign in to comment.