Skip to content

Commit 7ae0ff8

Browse files
committed
test certauth: fix paths
1 parent cf0a215 commit 7ae0ff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pywb/framework/test/test_certauth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
from pywb.framework.certauth import main, CertificateAuthority
77

8-
TEST_CA_DIR = './pywb/framework/test/pywb_test_ca_certs'
9-
TEST_CA_ROOT = './pywb/framework/test/pywb_test_ca.pem'
8+
TEST_CA_DIR = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca_certs')
9+
TEST_CA_ROOT = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca.pem')
1010

1111
def setup_module():
1212
openssl_support = pytest.importorskip("OpenSSL")

0 commit comments

Comments
 (0)