Update v3 identity domain negative tests to work w/ pre-prov
I don't see any limitations by using pre-provisioned
credentials for these tests:
* test_create_domain_with_empty_name
* test_create_domain_with_name_length_over_64
* test_delete_active_domain
* test_delete_non_existent_domain
* test_domain_create_duplicate
Change-Id: Id5ff861dbd723de46e61bb596b1f1f3d8d1c439b
diff --git a/tempest/api/identity/admin/v3/test_domains_negative.py b/tempest/api/identity/admin/v3/test_domains_negative.py
index 56f7d32..b3c68fb 100644
--- a/tempest/api/identity/admin/v3/test_domains_negative.py
+++ b/tempest/api/identity/admin/v3/test_domains_negative.py
@@ -20,6 +20,10 @@
class DomainsNegativeTestJSON(base.BaseIdentityV3AdminTest):
+ # NOTE: force_tenant_isolation is true in the base class by default but
+ # overridden to false here to allow test execution for clouds using the
+ # pre-provisioned credentials provider.
+ force_tenant_isolation = False
@decorators.attr(type=['negative', 'gate'])
@decorators.idempotent_id('1f3fbff5-4e44-400d-9ca1-d953f05f609b')