1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 09:13:23 +00:00

tests: Fix imports to tests/assertions.py

This commit is contained in:
Sebastian Pipping
2023-12-08 23:42:07 +01:00
parent cebdd45849
commit ecb5d84f0f
8 changed files with 14 additions and 8 deletions

View File

@@ -5,12 +5,13 @@ from urllib.parse import urlencode
from urllib.request import urlopen
import pytest_httpbin.certs
from assertions import assert_cassette_has_one_response
from pytest import mark
# Internal imports
import vcr
from ..assertions import assert_cassette_has_one_response
def urlopen_with_cafile(*args, **kwargs):
context = ssl.create_default_context(cafile=pytest_httpbin.certs.where())