Skip to content

Commit

Permalink
test certauth: fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jan 11, 2015
1 parent cf0a215 commit 7ae0ff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywb/framework/test/test_certauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

from pywb.framework.certauth import main, CertificateAuthority

TEST_CA_DIR = './pywb/framework/test/pywb_test_ca_certs'
TEST_CA_ROOT = './pywb/framework/test/pywb_test_ca.pem'
TEST_CA_DIR = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca_certs')
TEST_CA_ROOT = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca.pem')

def setup_module():
openssl_support = pytest.importorskip("OpenSSL")
Expand Down

0 comments on commit 7ae0ff8

Please sign in to comment.