From 3e01d2619e87141b6d6078d818c7394aa6b63281 Mon Sep 17 00:00:00 2001 From: Sergey Orlov Date: Tue, 26 Mar 2019 17:09:19 +0100 Subject: [PATCH] ipatests: in test_trust.py fix prameters in invocation of tasks.configure_dns_for_trust It was changed in f487233df002bf73dd48d5c87a146b90542bd034 for unknown reason. It did not influence test runs as configure_dns_for_trust was made no-op in previous commit 1d9e1521c59a5b43c2322892ce5cbe8cceff2790. As now this commit is reverted, configure_dns_for_trust is restored, invocation parameters also need to be changed to initial values. Related to https://pagure.io/freeipa/issue/7889 Reviewed-By: Alexander Bokovoy --- ipatests/test_integration/test_trust.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipatests/test_integration/test_trust.py b/ipatests/test_integration/test_trust.py index 3538bbf09..2e99222b8 100644 --- a/ipatests/test_integration/test_trust.py +++ b/ipatests/test_integration/test_trust.py @@ -86,7 +86,7 @@ class ADTrustBase(IntegrationTest): @classmethod def configure_dns_and_time(cls): - tasks.configure_dns_for_trust(cls.master, cls.ad_domain) + tasks.configure_dns_for_trust(cls.master, cls.ad) tasks.sync_time(cls.master, cls.ad) def test_establish_trust(self): @@ -120,7 +120,7 @@ class ADTrustSubdomainBase(ADTrustBase): @classmethod def configure_dns_and_time(cls): - tasks.configure_dns_for_trust(cls.master, cls.ad_subdomain) + tasks.configure_dns_for_trust(cls.master, cls.child_ad) tasks.sync_time(cls.master, cls.child_ad) @classmethod @@ -137,7 +137,7 @@ class ADTrustTreedomainBase(ADTrustBase): @classmethod def configure_dns_and_time(cls): - tasks.configure_dns_for_trust(cls.master, cls.ad_treedomain) + tasks.configure_dns_for_trust(cls.master, cls.tree_ad) tasks.sync_time(cls.master, cls.tree_ad) @classmethod