// Delete is the operation responsible for permanently deleting an API user. func Delete(client *gophercloud.ServiceClient, id string) os.DeleteResult { return os.Delete(client, id) }
func deleteUser(t *testing.T, client *gophercloud.ServiceClient, userID string) { res := users.Delete(client, userID) th.AssertNoErr(t, res.Err) t.Logf("Deleted user %s", userID) }