We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbde7fa commit db00a84Copy full SHA for db00a84
py/test/unit/selenium/webdriver/remote/remote_connection_tests.py
@@ -15,6 +15,7 @@
15
# specific language governing permissions and limitations
16
# under the License.
17
18
+import os
19
from unittest.mock import patch
20
from urllib import parse
21
@@ -222,7 +223,7 @@ def test_get_connection_manager_for_certs_and_timeout():
222
223
conn = remote_connection._get_connection_manager()
224
assert conn.connection_pool_kw["timeout"] == 10
225
assert conn.connection_pool_kw["cert_reqs"] == "CERT_REQUIRED"
- assert "certifi/cacert.pem" in conn.connection_pool_kw["ca_certs"]
226
+ assert f"certifi{os.path.sep}cacert.pem" in conn.connection_pool_kw["ca_certs"]
227
228
229
def test_default_socket_timeout_is_correct():
0 commit comments