summaryrefslogtreecommitdiff
path: root/tests/test_auth_token_middleware.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-03-07 22:05:34 +0000
committerGerrit Code Review <review@openstack.org>2013-03-07 22:05:34 +0000
commitf46aea4e969f37a90c3d0c3aaae73c9119579e5c (patch)
treeca7de11c522409f1cf0f399c6c902737a05f32ad /tests/test_auth_token_middleware.py
parentc017ba9819748d10d0d61431661625e139e67ce5 (diff)
parent9196be6664b453cced316842ba9d67caa389517a (diff)
downloadpython-keystoneclient-f46aea4e969f37a90c3d0c3aaae73c9119579e5c.tar.gz
Merge "Remove test dep on name of dir (bug 1124283)"
Diffstat (limited to 'tests/test_auth_token_middleware.py')
-rw-r--r--tests/test_auth_token_middleware.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_auth_token_middleware.py b/tests/test_auth_token_middleware.py
index 94a739c..58be41d 100644
--- a/tests/test_auth_token_middleware.py
+++ b/tests/test_auth_token_middleware.py
@@ -33,9 +33,9 @@ from keystoneclient.openstack.common import timeutils
from keystoneclient.middleware import test
-CERTDIR = test.rootdir("python-keystoneclient/examples/pki/certs")
-KEYDIR = test.rootdir("python-keystoneclient/examples/pki/private")
-CMSDIR = test.rootdir("python-keystoneclient/examples/pki/cms")
+CERTDIR = test.rootdir('examples', 'pki', 'certs')
+KEYDIR = test.rootdir('examples', 'pki', 'private')
+CMSDIR = test.rootdir('examples', 'pki', 'cms')
SIGNING_CERT = os.path.join(CERTDIR, 'signing_cert.pem')
SIGNING_KEY = os.path.join(KEYDIR, 'signing_key.pem')
CA = os.path.join(CERTDIR, 'ca.pem')