Skip to content

Commit

Permalink
[Tests] Fix test_http_proxy_with_cert_file after the added proxy auth…
Browse files Browse the repository at this point in the history
…entication support

The test had to be updated because of the changes introduced in 352fb43
  • Loading branch information
ddraganov committed Jul 18, 2023
1 parent 8b61a2f commit 9bc45af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_http_proxy_with_cert_file(self, hs):
certKeyFile='my_key_file', certFile='my_cert_file').GetConnection()
conn.request('GET', '/')
hs.assert_called_once_with('vcsa:80', cert_file='my_cert_file', key_file='my_key_file')
conn.set_tunnel.assert_called_once_with('sdkTunnel:8089')
conn.set_tunnel.assert_called_once_with('sdkTunnel:8089', headers={})

@tests.VCRTestBase.my_vcr.use_cassette('http_proxy.yaml',
cassette_library_dir=tests.fixtures_path,
Expand Down

0 comments on commit 9bc45af

Please sign in to comment.