[openstack|identity] Fix status code expectation

Signed-off-by: Nelvin Driz <nelvindriz@live.com>
This commit is contained in:
Nelvin Driz 2012-04-10 14:06:25 +08:00
parent 593322f178
commit b74f226483
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module Fog
def delete_user(user_id)
request(
:expects => 200,
:expects => [200, 204],
:method => 'DELETE',
:path => "users/#{user_id}"
)