summaryrefslogtreecommitdiffstats
path: root/tests/test_content_types.py
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@chmouel.com>2012-03-20 10:09:25 +0000
committerChmouel Boudjnah <chmouel@chmouel.com>2012-03-20 22:41:40 +0000
commit3a296a458c4e2f9465ddc0330d03c3e7ec0e3c50 (patch)
tree18063055f840db9e42a56a4f51de89dbfdafdefe /tests/test_content_types.py
parent5ea232a09f88d621980cbd5ef4655f9c9a2e2da1 (diff)
downloadkeystone-3a296a458c4e2f9465ddc0330d03c3e7ec0e3c50.tar.gz
keystone-3a296a458c4e2f9465ddc0330d03c3e7ec0e3c50.tar.xz
keystone-3a296a458c4e2f9465ddc0330d03c3e7ec0e3c50.zip
Spring cleaning, fix PEP8 violations.
Change-Id: Ide832cd64c9b285213e23901eaf81946d504e726
Diffstat (limited to 'tests/test_content_types.py')
-rw-r--r--tests/test_content_types.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_content_types.py b/tests/test_content_types.py
index 64599ef6..639a03dc 100644
--- a/tests/test_content_types.py
+++ b/tests/test_content_types.py
@@ -368,9 +368,9 @@ class CoreApiTests(object):
def test_validate_token_belongs_to(self):
token = self.get_scoped_token()
- path = ('/v2.0/tokens/%s?belongsTo=%s'
- % (token, self.tenant_bar['id']))
- r = self.admin_request(path=path,token=token)
+ path = ('/v2.0/tokens/%s?belongsTo=%s' % (token,
+ self.tenant_bar['id']))
+ r = self.admin_request(path=path, token=token)
self.assertValidAuthenticationResponse(r,
require_service_catalog=True)