diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-10 14:14:01 -0800 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-10 14:14:01 -0800 |
commit | 29bc4f5074ca3ada98a25a745077b998b4c5509c (patch) | |
tree | 2ddf77b2c75322d570c028f244ffb7049d443a7a | |
parent | 3d6430ecd114daa21c72c3d215daaa94f0e87e62 (diff) | |
download | nova-29bc4f5074ca3ada98a25a745077b998b4c5509c.tar.gz nova-29bc4f5074ca3ada98a25a745077b998b4c5509c.tar.xz nova-29bc4f5074ca3ada98a25a745077b998b4c5509c.zip |
Pep8 / Style
-rw-r--r-- | nova/tests/integrated/test_login.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/integrated/test_login.py b/nova/tests/integrated/test_login.py index 990dcaaf4..e362f92d6 100644 --- a/nova/tests/integrated/test_login.py +++ b/nova/tests/integrated/test_login.py @@ -22,6 +22,7 @@ from nova.log import logging from nova.tests.integrated import integrated_helpers from nova.tests.integrated.api import client + LOG = logging.getLogger('nova.tests.integrated') FLAGS = flags.FLAGS @@ -63,7 +64,6 @@ class LoginTest(unittest.TestCase): self.assertRaises(client.OpenstackApiAuthenticationException, bad_credentials_api.get_flavors) - def test_bad_login_both_bad(self): """Test that I get a 401 with both bad username and bad password""" bad_credentials_api = client.TestOpenStackClient("notso_username", |