Fix app cred client unit test name

A copy-paste error led to one of the application credential client unit
tests being named 'test_delete_trust' which is not correct in this
context. This change corrects the test name

Change-Id: I494b5ef08ba6c906827705a2a16d72e95e37af12
This commit is contained in:
Colleen Murphy 2019-12-23 14:03:12 -08:00
parent 3e42d81b72
commit dce03904bc
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class TestApplicationCredentialsClient(base.BaseServiceTest):
def test_list_application_credential_with_bytes_body(self):
self._test_list_app_creds(bytes_body=True)
def test_delete_trust(self):
def test_delete_application_credential(self):
self.check_service_client_function(
self.client.delete_application_credential,
'tempest.lib.common.rest_client.RestClient.delete',