summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_keystoneclient.py3
-rw-r--r--tests/test_legacy_compat.py8
-rw-r--r--tests/test_novaclient_compat.py3
3 files changed, 8 insertions, 6 deletions
diff --git a/tests/test_keystoneclient.py b/tests/test_keystoneclient.py
index 9766108a..d7748649 100644
--- a/tests/test_keystoneclient.py
+++ b/tests/test_keystoneclient.py
@@ -7,7 +7,8 @@ from keystone import test
import default_fixtures
CONF = config.CONF
-KEYSTONECLIENT_REPO = 'git://github.com/openstack/python-keystoneclient.git'
+OPENSTACK_REPO = 'https://review.openstack.org/p/openstack'
+KEYSTONECLIENT_REPO = '%s/python-keystoneclient.git' % OPENSTACK_REPO
class CompatTestCase(test.TestCase):
diff --git a/tests/test_legacy_compat.py b/tests/test_legacy_compat.py
index ff6b7fdb..e9d9ebc0 100644
--- a/tests/test_legacy_compat.py
+++ b/tests/test_legacy_compat.py
@@ -13,11 +13,11 @@ from keystone.common import utils
CONF = config.CONF
+OPENSTACK_REPO = 'https://review.openstack.org/p/openstack/'
-IDENTITY_API_REPO = 'git://github.com/openstack/identity-api.git'
-KEYSTONE_REPO = 'git://github.com/openstack/keystone.git'
-NOVACLIENT_REPO = 'git://github.com/rackspace/python-novaclient.git'
-
+IDENTITY_API_REPO = '%s/identity-api.git' % OPENSTACK_REPO
+KEYSTONE_REPO = '%s/keystone.git' % OPENSTACK_REPO
+NOVACLIENT_REPO = '%s/python-novaclient.git' % OPENSTACK_REPO
IDENTITY_SAMPLE_DIR = 'openstack-identity-api/src/docbkx/samples'
KEYSTONE_SAMPLE_DIR = 'keystone/content/common/samples'
diff --git a/tests/test_novaclient_compat.py b/tests/test_novaclient_compat.py
index b4f6dc79..5578e4f7 100644
--- a/tests/test_novaclient_compat.py
+++ b/tests/test_novaclient_compat.py
@@ -12,7 +12,8 @@ import default_fixtures
CONF = config.CONF
-NOVACLIENT_REPO = 'git://github.com/openstack/python-novaclient.git'
+OPENSTACK_REPO = 'https://review.openstack.org/p/openstack'
+NOVACLIENT_REPO = '%s/python-novaclient.git' % OPENSTACK_REPO
class CompatTestCase(test.TestCase):