Skip to content

Commit

Permalink
style(urllib3): add mention of ProxyManager
Browse files Browse the repository at this point in the history
  • Loading branch information
spawn-guy committed Oct 2, 2024
1 parent 6fe3cc5 commit bb0d50f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions t/unit/asynchronous/http/test_urllib3.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,8 @@ def test_on_readable_on_writable(self):
x = self.Client()
x.on_readable(Mock(name='fd'))
x.on_writable(Mock(name='fd'))

def test_setup_request_sets_proxy_when_specified(self):
# FIXME: PoolManager or ProxyManager. not proxy per request.
with patch('kombu.asynchronous.http.urllib3_client.urllib3.PoolManager'):
pass

0 comments on commit bb0d50f

Please sign in to comment.