diff options
| author | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-07-21 12:19:32 -0500 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-07-21 12:19:32 -0500 |
| commit | 804f4d5db8d78b3462bf0acb693e4dd76209c413 (patch) | |
| tree | 46934295121d7c2558fe58600d85bb1ad9970033 | |
| parent | 0c1dab520993ac40dbb0b2a298bff451c68dcbdc (diff) | |
Updating a disabled user should now succeed
| -rwxr-xr-x | keystone/test/unit/test_users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/test/unit/test_users.py b/keystone/test/unit/test_users.py index 2a6f710e..c44a9638 100755 --- a/keystone/test/unit/test_users.py +++ b/keystone/test/unit/test_users.py @@ -845,7 +845,7 @@ class UpdateUserTest(UserTest): self.fail('Identity Fault') elif resp_val == 503: self.fail('Service Not Available') - self.assertEqual(403, resp_val) + self.assertEqual(200, resp_val) def test_user_update_user_disabled_xml(self): utils.create_user(self.tenant, self.user, str(self.auth_token)) |
