From 3507bcd3dfe2b0f1e7fae6f219a925ec6904ab47 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Mon, 15 Dec 2014 11:29:05 +0100 Subject: ipatests: Invoke class install methods properly with respect to pytest-multihost Multihost object was is not passed to the install method in the super construction. This fixes setup errors in AD Trust, Forced client reenrollment, CALess and Sudo tests. https://fedorahosted.org/freeipa/ticket/4809 Reviewed-By: Petr Viktorin --- ipatests/test_integration/test_trust.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests/test_integration/test_trust.py') diff --git a/ipatests/test_integration/test_trust.py b/ipatests/test_integration/test_trust.py index 9a7ab2948..772a50842 100644 --- a/ipatests/test_integration/test_trust.py +++ b/ipatests/test_integration/test_trust.py @@ -34,7 +34,7 @@ class ADTrustBase(IntegrationTest): @classmethod def install(cls, mh): - super(ADTrustBase, cls).install() + super(ADTrustBase, cls).install(mh) cls.ad = cls.ad_domains[0].ads[0] cls.install_adtrust() cls.check_sid_generation() -- cgit