Merge "Trusts do not implement patch."

This commit is contained in:
Zuul 2018-07-25 13:03:21 +00:00 committed by Gerrit Code Review
commit 2aa73187f6
1 changed files with 0 additions and 6 deletions

View File

@ -112,12 +112,6 @@ class TestTrustOperations(test_v3.RestfulTestCase):
r = self.get('/OS-TRUST/trusts')
self.assertValidTrustListResponse(r, trust)
# trusts are immutable
self.patch(
'/OS-TRUST/trusts/%(trust_id)s' % {'trust_id': trust['id']},
body={'trust': ref},
expected_status=http_client.NOT_FOUND)
# delete the trust
self.delete(
'/OS-TRUST/trusts/%(trust_id)s' % {'trust_id': trust['id']})