diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-15 13:52:03 -0700 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-15 13:52:03 -0700 |
commit | f1acc3d199a1a92b531a3e74ed54a8b2fcdb999c (patch) | |
tree | 23278228d48b345e3f68a0e5c6451d528061103f | |
parent | e1fb1111d04803b7ffd96b67ab37ae49e83e0d28 (diff) | |
download | nova-f1acc3d199a1a92b531a3e74ed54a8b2fcdb999c.tar.gz nova-f1acc3d199a1a92b531a3e74ed54a8b2fcdb999c.tar.xz nova-f1acc3d199a1a92b531a3e74ed54a8b2fcdb999c.zip |
Now that the fix for 732866, stop working around the bug
-rw-r--r-- | nova/tests/integrated/api/client.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nova/tests/integrated/api/client.py b/nova/tests/integrated/api/client.py index 568e8c17e..fc7c344e7 100644 --- a/nova/tests/integrated/api/client.py +++ b/nova/tests/integrated/api/client.py @@ -108,10 +108,7 @@ class TestOpenStackClient(object): http_status = response.status LOG.debug(_("%(auth_uri)s => code %(http_status)s") % locals()) - # Until bug732866 is fixed, we can't check this properly... - # bug732866 - #if http_status == 401: - if http_status != 204: + if http_status == 401: raise OpenStackApiAuthenticationException(response=response) auth_headers = {} |