Skip to content

Commit 0c61531

Browse files
felixonmarstseaver
authored andcommitted
Fix some typos in test_urllib3.py (#268)
1 parent f857d41 commit 0c61531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/google-auth/tests/transport/test_urllib3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ def test_timeout(self):
3434
assert http.request.call_args[1]['timeout'] == 5
3535

3636

37-
def test__make_default_http_with_certfi():
37+
def test__make_default_http_with_certifi():
3838
http = google.auth.transport.urllib3._make_default_http()
3939
assert 'cert_reqs' in http.connection_pool_kw
4040

4141

4242
@mock.patch.object(google.auth.transport.urllib3, 'certifi', new=None)
43-
def test__make_default_http_without_certfi():
43+
def test__make_default_http_without_certifi():
4444
http = google.auth.transport.urllib3._make_default_http()
4545
assert 'cert_reqs' not in http.connection_pool_kw
4646

0 commit comments

Comments
 (0)