diff --git a/functionaltests/api/v1/functional/test_containers_rbac.py b/functionaltests/api/v1/functional/test_containers_rbac.py index b5495b5d7..5e2f9d55e 100644 --- a/functionaltests/api/v1/functional/test_containers_rbac.py +++ b/functionaltests/api/v1/functional/test_containers_rbac.py @@ -128,7 +128,7 @@ class RBACContainersTestCase(base.TestCase): def test_rbac_store_container(self, user, admin, expected_return): """Test RBAC for container store - Issue a container store and verify that that the correct + Issue a container store and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the store @@ -152,7 +152,7 @@ class RBACContainersTestCase(base.TestCase): def test_rbac_update_container(self, user, admin, expected_return): """Test RBAC for container update - Issue a container update and verify that that the correct + Issue a container update and verify that the correct http return code comes back for the specified user. The initial container will be stored with the admin user to ensure @@ -174,7 +174,7 @@ class RBACContainersTestCase(base.TestCase): def test_rbac_get_container(self, user, admin, expected_return): """Test RBAC for container get - Issue a container get and verify that that the correct + Issue a container get and verify that the correct http return code comes back for the specified user. The initial container will be stored with the admin user to ensure @@ -196,7 +196,7 @@ class RBACContainersTestCase(base.TestCase): def test_rbac_delete_container(self, user, admin, expected_return): """Test RBAC for container delete - Issue a container delete and verify that that the correct + Issue a container delete and verify that the correct http return code comes back for the specified user. The initial container will be stored with the admin user to ensure diff --git a/functionaltests/api/v1/functional/test_orders_rbac.py b/functionaltests/api/v1/functional/test_orders_rbac.py index 49666e6c5..c427e93ca 100644 --- a/functionaltests/api/v1/functional/test_orders_rbac.py +++ b/functionaltests/api/v1/functional/test_orders_rbac.py @@ -100,7 +100,7 @@ class RBACOrdersTestCase(base.TestCase): def test_rbac_create_order(self, user, admin, expected_return): """Test RBAC for order creation - Issue an order creation and verify that that the correct + Issue an order creation and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the create @@ -118,7 +118,7 @@ class RBACOrdersTestCase(base.TestCase): def test_rbac_get_order(self, user, admin, expected_return): """Test RBAC for order get metadata - Issue an order get and verify that that the correct + Issue an order get and verify that the correct http return code comes back for the specified user. The initial order will be created with the admin user to ensure @@ -139,7 +139,7 @@ class RBACOrdersTestCase(base.TestCase): def test_rbac_get_list_of_orders(self, user, admin, expected_return): """Test RBAC for get order list - Issue an get order list and verify that that the correct + Issue a get order list and verify that the correct http return code comes back for the specified user. Some initial orders will be stored with the admin user to ensure @@ -163,7 +163,7 @@ class RBACOrdersTestCase(base.TestCase): def test_rbac_delete_order(self, user, admin, expected_return): """Test RBAC for order delete - Issue an order delete and verify that that the correct + Issue an order delete and verify that the correct http return code comes back for the specified user. The initial order will be stored with the admin user to ensure diff --git a/functionaltests/api/v1/functional/test_quotas_rbac.py b/functionaltests/api/v1/functional/test_quotas_rbac.py index 8c80c8250..0918c1370 100644 --- a/functionaltests/api/v1/functional/test_quotas_rbac.py +++ b/functionaltests/api/v1/functional/test_quotas_rbac.py @@ -106,7 +106,7 @@ class RBACQuotasTestCase(base.TestCase): def test_rbac_get_quotas(self, user, admin, expected_return): """Test RBAC for get quotas - Issue a get quotas and verify that that the correct + Issue a get quotas and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the get @@ -120,7 +120,7 @@ class RBACQuotasTestCase(base.TestCase): def test_rbac_get_project_quotas(self, user, admin, expected_return): """Test RBAC for get project quotas - Issue a get quotas and verify that that the correct + Issue a get quotas and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the get @@ -134,7 +134,7 @@ class RBACQuotasTestCase(base.TestCase): def test_rbac_set_project_quotas(self, user, admin, expected_return): """Test RBAC for set project quotas - Issue a set project quotas and verify that that the correct + Issue a set project quotas and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the set @@ -153,7 +153,7 @@ class RBACQuotasTestCase(base.TestCase): def test_rbac_delete_project_quotas(self, user, admin, expected_return): """Test RBAC for delete project quotas - Issue a set project quotas and verify that that the correct + Issue a set project quotas and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the delete diff --git a/functionaltests/api/v1/functional/test_secrets_rbac.py b/functionaltests/api/v1/functional/test_secrets_rbac.py index 3b3da8ff1..6fce00d52 100644 --- a/functionaltests/api/v1/functional/test_secrets_rbac.py +++ b/functionaltests/api/v1/functional/test_secrets_rbac.py @@ -162,7 +162,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_store_secret(self, user, admin, expected_return): """Test RBAC for secret store - Issue a secret creation and verify that that the correct + Issue a secret creation and verify that the correct http return code comes back for the specified user. :param user: the user who will attempt to do the store @@ -179,7 +179,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_update_secret(self, user, admin, expected_return): """Test RBAC for secret update - Issue a secret update and verify that that the correct + Issue a secret update and verify that the correct http return code comes back for the specified user. The initial secret will be stored with the admin user to ensure @@ -203,7 +203,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_get_secret_metadata(self, user, admin, expected_return): """Test RBAC for secret get metadata - Issue a secret get metadata and verify that that the correct + Issue a secret get metadata and verify that the correct http return code comes back for the specified user. The initial secret will be stored with the admin user to ensure @@ -225,7 +225,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_get_decrypted_secret(self, user, admin, expected_return): """Test RBAC for secret get decrypted secret - Issue a secret get decrypted data and verify that that the correct + Issue a secret get decrypted data and verify that the correct http return code comes back for the specified user. The initial secret will be stored with the admin user to ensure @@ -250,7 +250,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_get_list_of_secrets(self, user, admin, expected_return): """Test RBAC for get secret list - Issue a get secret list and verify that that the correct + Issue a get secret list and verify that the correct http return code comes back for the specified user. Some initial secrets will be stored with the admin user to ensure @@ -274,7 +274,7 @@ class RBACSecretsTestCase(base.TestCase): def test_rbac_delete_secret(self, user, admin, expected_return): """Test RBAC for secret delete - Issue a secret delete and verify that that the correct + Issue a secret delete and verify that the correct http return code comes back for the specified user. The initial secret will be stored with the admin user to ensure