summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2014-09-08 12:34:10 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2014-09-08 12:34:10 -0500
commit5f44a83c6ada97249ec83d43348c0f78d6f3a786 (patch)
tree952faa708b553a1b523c31519708c62da95cf46e
parent0f6cfb970f6dd63bfbf4cf61bc21f7495c66d582 (diff)
downloadpython-keystoneclient-5f44a83c6ada97249ec83d43348c0f78d6f3a786.tar.gz
fix typos
Change-Id: Ia850e62fe4c888365f5031cc8b7c7ad526600222
-rw-r--r--keystoneclient/auth/conf.py2
-rw-r--r--keystoneclient/fixture/discovery.py2
-rw-r--r--keystoneclient/tests/v3/test_auth_saml2.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/keystoneclient/auth/conf.py b/keystoneclient/auth/conf.py
index c3d13db..f8d51e3 100644
--- a/keystoneclient/auth/conf.py
+++ b/keystoneclient/auth/conf.py
@@ -80,7 +80,7 @@ def register_conf_options(conf, group):
def load_from_conf_options(conf, group, **kwargs):
"""Load a plugin from an oslo.config CONF object.
- Each plugin will register there own required options and so there is no
+ Each plugin will register their own required options and so there is no
standard list and the plugin should be consulted.
The base options should have been registered with register_conf_options
diff --git a/keystoneclient/fixture/discovery.py b/keystoneclient/fixture/discovery.py
index 0a7f625..94cfe11 100644
--- a/keystoneclient/fixture/discovery.py
+++ b/keystoneclient/fixture/discovery.py
@@ -154,7 +154,7 @@ class V3Discovery(DiscoveryBase):
Provides some default values and helper methods for creating a v3
endpoint version structure. Clients should use this instead of creating
- there own structures.
+ their own structures.
"""
@utils.positional()
diff --git a/keystoneclient/tests/v3/test_auth_saml2.py b/keystoneclient/tests/v3/test_auth_saml2.py
index 712c7f7..053fdf6 100644
--- a/keystoneclient/tests/v3/test_auth_saml2.py
+++ b/keystoneclient/tests/v3/test_auth_saml2.py
@@ -319,14 +319,14 @@ class ScopeFederationTokenTests(AuthenticateviaSAML2Tests):
self.PROJECT_SCOPED_TOKEN_JSON = client_fixtures.project_scoped_token()
self.PROJECT_SCOPED_TOKEN_JSON['methods'] = ['saml2']
- # for better readibility
+ # for better readability
self.TEST_TENANT_ID = self.PROJECT_SCOPED_TOKEN_JSON.project_id
self.TEST_TENANT_NAME = self.PROJECT_SCOPED_TOKEN_JSON.project_name
self.DOMAIN_SCOPED_TOKEN_JSON = client_fixtures.domain_scoped_token()
self.DOMAIN_SCOPED_TOKEN_JSON['methods'] = ['saml2']
- # for better readibility
+ # for better readability
self.TEST_DOMAIN_ID = self.DOMAIN_SCOPED_TOKEN_JSON.domain_id
self.TEST_DOMAIN_NAME = self.DOMAIN_SCOPED_TOKEN_JSON.domain_name