Merge "Expand Designate RBAC testing - zones import"
diff --git a/designate_tempest_plugin/tests/api/v2/test_quotas.py b/designate_tempest_plugin/tests/api/v2/test_quotas.py
index 83b9fdd..37e07e3 100644
--- a/designate_tempest_plugin/tests/api/v2/test_quotas.py
+++ b/designate_tempest_plugin/tests/api/v2/test_quotas.py
@@ -302,7 +302,6 @@
headers=self.all_projects_header)
@decorators.idempotent_id('a6ce5b46-dcce-11eb-903e-74e5f9e2a801')
- @decorators.skip_because(bug="1934596")
def test_admin_sets_invalid_quota_values(self):
primary_project_id = self.quotas_client.project_id
@@ -317,7 +316,6 @@
headers=self.all_projects_header)
@decorators.idempotent_id('ac212fd8-c602-11ec-b042-201e8823901f')
- @decorators.skip_because(bug="1934596")
def test_admin_sets_not_existing_quota_type(self):
LOG.info('Try to set quota using not existing quota type in its body')
@@ -326,7 +324,7 @@
quota[data_utils.rand_name()] = 777
with self.assertRaisesDns(
- lib_exc.ServerFault, 'quota_resource_unknown', 500):
+ lib_exc.BadRequest, 'invalid_object', 400):
self.admin_client.set_quotas(
project_id=primary_project_id,
quotas=quota, headers=self.all_projects_header)