summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-09-11 06:35:32 +0000
committerGerrit Code Review <review@openstack.org>2014-09-11 06:35:32 +0000
commit01cabf6bbbee8b5340295f3be5e1fa7111387e7d (patch)
tree438d62cb1f82cccfefa0c47a72d229fbd7202e0c
parentb580155f1cbbe614f388e0facbb5376bcc526d39 (diff)
parent5f44a83c6ada97249ec83d43348c0f78d6f3a786 (diff)
downloadpython-keystoneclient-01cabf6bbbee8b5340295f3be5e1fa7111387e7d.tar.gz
Merge "fix typos"
-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 ca14499..52b60ba 100644
--- a/keystoneclient/auth/conf.py
+++ b/keystoneclient/auth/conf.py
@@ -79,7 +79,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