diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-03-07 22:05:34 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-03-07 22:05:34 +0000 |
| commit | f46aea4e969f37a90c3d0c3aaae73c9119579e5c (patch) | |
| tree | ca7de11c522409f1cf0f399c6c902737a05f32ad /tests/test_auth_token_middleware.py | |
| parent | c017ba9819748d10d0d61431661625e139e67ce5 (diff) | |
| parent | 9196be6664b453cced316842ba9d67caa389517a (diff) | |
| download | python-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.py | 6 |
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') |
