Making Keystone clients consistent
This patch is intended to make consistency between Keystone V2 and V3
clients. If a client exists in V2 and V3, e.g roles client, users client,
suffix v3 is used for the corresponding V3 clients. If we deal with a client
that exists only in V3, e.g regions client, no suffix is used because we
don't have the same client in V2.
Change-Id: I976db1540035bf36c9c50d9d10987dd01b072e43
diff --git a/tempest/services/identity/v3/json/endpoints_client.py b/tempest/services/identity/v3/json/endpoints_client.py
index c83212f..db30508 100644
--- a/tempest/services/identity/v3/json/endpoints_client.py
+++ b/tempest/services/identity/v3/json/endpoints_client.py
@@ -22,7 +22,7 @@
from tempest.lib.common import rest_client
-class EndPointClient(rest_client.RestClient):
+class EndPointsClient(rest_client.RestClient):
api_version = "v3"
def list_endpoints(self):