diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-03-30 09:39:35 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-03-30 09:39:35 -0400 |
| commit | b1589b5f034db95b1d18910e27cae516258a4311 (patch) | |
| tree | 4268c5c6eb63dc2b12a4fd21ae72a20a447b780e | |
| parent | d713fbde58258053a5c55c8d748eb544e55a1adc (diff) | |
| download | nova-b1589b5f034db95b1d18910e27cae516258a4311.tar.gz nova-b1589b5f034db95b1d18910e27cae516258a4311.tar.xz nova-b1589b5f034db95b1d18910e27cae516258a4311.zip | |
exception -> Fault
| -rw-r--r-- | nova/tests/api/openstack/test_faults.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/api/openstack/test_faults.py b/nova/tests/api/openstack/test_faults.py index 0cda542de..9746e8168 100644 --- a/nova/tests/api/openstack/test_faults.py +++ b/nova/tests/api/openstack/test_faults.py @@ -128,7 +128,7 @@ class TestFaults(test.TestCase): self.assertEqual(expected, actual) def test_raise(self): - """Ensure the ability to raise exceptions in WSGI-ified methods.""" + """Ensure the ability to raise `Fault`s in WSGI-ified methods.""" @webob.dec.wsgify def raiser(req): raise faults.Fault(webob.exc.HTTPNotFound(explanation='whut?')) |
