ipatests: fix expectations of ipa trust-find output for trust with root domain

Test was expecting that when trust is established with forest root, than all
three AD domains should be found when quering trust-find for that domain.
Actually only root domain and its subdomain should be returned, without
the tree domain.

Related to https://pagure.io/freeipa/issue/7889

Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
Sergey Orlov 2019-03-26 18:23:35 +01:00 committed by Rob Crittenden
parent 1d0a612a0f
commit e8955cc796

View File

@ -110,7 +110,7 @@ class ADTrustBase(IntegrationTest):
# Check that all trustdomains appear in the result # Check that all trustdomains appear in the result
assert self.ad_domain in result.stdout_text assert self.ad_domain in result.stdout_text
assert self.ad_subdomain in result.stdout_text assert self.ad_subdomain in result.stdout_text
assert self.ad_treedomain in result.stdout_text assert "Number of entries returned 2" in result.stdout_text
class ADTrustSubdomainBase(ADTrustBase): class ADTrustSubdomainBase(ADTrustBase):