mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-10014: fix components/test_accounts.py test_user_key_renew_same_account: remove secret key checks since it was removed from the API response
This commit is contained in:
parent
990e4a6e40
commit
055ae078ec
|
|
@ -1653,10 +1653,6 @@ class TestUserAPIKeys(cloudstackTestCase):
|
|||
user.apikey,
|
||||
userkeys.apikey,
|
||||
"Check User api key")
|
||||
self.assertEqual(
|
||||
user.secretkey,
|
||||
userkeys.secretkey,
|
||||
"Check User having secret key")
|
||||
|
||||
self.debug("Get test client with user keys")
|
||||
cs_api = self.testClient.getUserApiClient(
|
||||
|
|
@ -1668,10 +1664,6 @@ class TestUserAPIKeys(cloudstackTestCase):
|
|||
userkeys.apikey,
|
||||
new_keys.apikey,
|
||||
"Check API key is different")
|
||||
self.assertNotEqual(
|
||||
userkeys.secretkey,
|
||||
new_keys.secretkey,
|
||||
"Check secret key is different")
|
||||
|
||||
@attr(tags=[
|
||||
"role",
|
||||
|
|
|
|||
Loading…
Reference in New Issue