Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyli committed Sep 29, 2014
1 parent 26309c0 commit 9a95c1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 9 additions & 0 deletions mimic/test/fixtures.py
Expand Up @@ -13,6 +13,15 @@ class TenantAuthentication(object):
particular username and password
"""
def __init__(self, test_case, root, username, password):
"""
Authenticate a particular user against the mimic root.
:param root: The :class:`twisted.web.resource.IResource` at the root
of the mimic API resource tree.
:param username: the username to authenticate as
:param password: the password with which to use to authenticate
"""
_, self.service_catalog_json = test_case.successResultOf(json_request(
test_case, root, "POST", "/identity/v2.0/tokens",
{
Expand Down
1 change: 0 additions & 1 deletion mimic/test/test_nova.py
Expand Up @@ -376,7 +376,6 @@ def test_different_tenants_same_region(self):
self.assertEqual(response_body, {'servers': []})



class NovaAPINegativeTests(SynchronousTestCase):

"""
Expand Down

0 comments on commit 9a95c1f

Please sign in to comment.