Update service client access test_dns_integration

This commit updates the Designate service client access to use the
tempest registry instead of clients added to the client manager.

Depends-On: https://review.opendev.org/c/openstack/designate-tempest-plugin/+/800280
Change-Id: Ie72e31e8e9081d305a5fb79ae6296546e29a0ee8
This commit is contained in:
Michael Johnson 2021-07-09 18:20:52 +00:00
parent 07fa9073e3
commit 8053c97502
1 changed files with 1 additions and 2 deletions

View File

@ -47,8 +47,7 @@ class BaseDNSIntegrationTests(base.BaseTempestTestCase, DNSMixin):
@classmethod
def setup_clients(cls):
super(BaseDNSIntegrationTests, cls).setup_clients()
cls.dns_client = cls.os_tempest.zones_client
cls.query_client = cls.os_tempest.query_client
cls.dns_client = cls.os_tempest.dns_v2.ZonesClient()
cls.query_client.build_timeout = 30
@classmethod