We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f857d41 commit 0c61531Copy full SHA for 0c61531
packages/google-auth/tests/transport/test_urllib3.py
@@ -34,13 +34,13 @@ def test_timeout(self):
34
assert http.request.call_args[1]['timeout'] == 5
35
36
37
-def test__make_default_http_with_certfi():
+def test__make_default_http_with_certifi():
38
http = google.auth.transport.urllib3._make_default_http()
39
assert 'cert_reqs' in http.connection_pool_kw
40
41
42
@mock.patch.object(google.auth.transport.urllib3, 'certifi', new=None)
43
-def test__make_default_http_without_certfi():
+def test__make_default_http_without_certifi():
44
45
assert 'cert_reqs' not in http.connection_pool_kw
46
0 commit comments