Skip to content

Commit

Permalink
[py] Correct assert in cert tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Oct 13, 2020
1 parent af3e6a5 commit 159a669
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def test_get_connection_manager_for_certs_and_timeout():
conn = remote_connection._get_connection_manager()
assert conn.connection_pool_kw['timeout'] == 10
assert conn.connection_pool_kw['cert_reqs'] == 'CERT_REQUIRED'
assert 'site-packages/certifi/cacert.pem' in conn.connection_pool_kw['ca_certs']
assert 'certifi/cacert.pem' in conn.connection_pool_kw['ca_certs']


def test_get_connection_manager_with_proxy(mock_proxy_settings):
Expand Down

0 comments on commit 159a669

Please sign in to comment.