diff options
| author | Ed Leafe <ed@leafe.com> | 2011-07-06 17:14:46 +0000 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-07-06 17:14:46 +0000 |
| commit | 9d29dc60d904f2c5037d03cead71933dc62777ff (patch) | |
| tree | fb67c07444558044e32f7b175a9c242a17394c07 /nova | |
| parent | a4d2fa0a88f125f56023b5611ef6420d577594bf (diff) | |
pep8 fixes
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/tests/test_hosts.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nova/tests/test_hosts.py b/nova/tests/test_hosts.py index c14ea349b..548f81f8b 100644 --- a/nova/tests/test_hosts.py +++ b/nova/tests/test_hosts.py @@ -89,13 +89,13 @@ class HostTestCase(test.TestCase): def test_bad_status_value(self): bad_body = {"status": "bad"} - self.assertRaises(webob.exc.HTTPBadRequest, self.controller.update, self.req, - "host_c1", body=bad_body) + self.assertRaises(webob.exc.HTTPBadRequest, self.controller.update, + self.req, "host_c1", body=bad_body) def test_bad_update_key(self): bad_body = {"crazy": "bad"} - self.assertRaises(webob.exc.HTTPBadRequest, self.controller.update, self.req, - "host_c1", body=bad_body) + self.assertRaises(webob.exc.HTTPBadRequest, self.controller.update, + self.req, "host_c1", body=bad_body) def test_bad_host(self): self.assertRaises(exception.HostNotFound, self.controller.update, |
