summaryrefslogtreecommitdiff
path: root/keystoneclient/tests/unit/v3/test_auth.py
diff options
context:
space:
mode:
authorDr. Jens Harbott <harbott@osism.tech>2021-11-05 22:16:34 +0100
committerDr. Jens Harbott <harbott@osism.tech>2021-11-05 22:37:50 +0100
commitea6fe1da5d980e0f329c8b3abfa19d25400f366c (patch)
tree298cffee2580c2a665a405e0ae42857399982af5 /keystoneclient/tests/unit/v3/test_auth.py
parentd5cb761763988217cdd00a7981a62e2083fd381f (diff)
downloadpython-keystoneclient-ea6fe1da5d980e0f329c8b3abfa19d25400f366c.tar.gz
Stop using an admin endpoint by default
With V3 of the identity API, we no longer need to have a dedicated admin endpoint, so stop requesting one by default, allowing deployments to actually work without one. Signed-off-by: Dr. Jens Harbott <harbott@osism.tech> Change-Id: I96cc9c14008bcc59992d06c89f8f50895390f11e
Diffstat (limited to 'keystoneclient/tests/unit/v3/test_auth.py')
-rw-r--r--keystoneclient/tests/unit/v3/test_auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/tests/unit/v3/test_auth.py b/keystoneclient/tests/unit/v3/test_auth.py
index 9f87977..d3c44ad 100644
--- a/keystoneclient/tests/unit/v3/test_auth.py
+++ b/keystoneclient/tests/unit/v3/test_auth.py
@@ -232,7 +232,7 @@ class AuthenticateAgainstKeystoneTests(utils.TestCase):
self.stub_auth(json=self.TEST_RESPONSE_DICT)
self.stub_url('GET', [fake_url], json=fake_resp,
- base_url=self.TEST_ADMIN_IDENTITY_ENDPOINT)
+ base_url=self.TEST_PUBLIC_IDENTITY_ENDPOINT)
# Creating a HTTPClient not using session is deprecated.
with self.deprecations.expect_deprecations_here():
@@ -335,7 +335,7 @@ class AuthenticateAgainstKeystoneTests(utils.TestCase):
self.stub_auth(json=self.TEST_RESPONSE_DICT)
self.stub_url('GET', [fake_url], json=fake_resp,
- base_url=self.TEST_ADMIN_IDENTITY_ENDPOINT)
+ base_url=self.TEST_PUBLIC_IDENTITY_ENDPOINT)
# Creating a HTTPClient not using session is deprecated.
with self.deprecations.expect_deprecations_here():