ipatests: update expected output for boolean attribute

Now that IPA API properly maps LDAP boolean attributes to the
python bool type, they are displayed as True/False instead
of TRUE/FALSE in the ipa *-show outputs.

Update the expected output for DNS Active Zone.

Related: https://pagure.io/freeipa/issue/9171
Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
Florence Blanc-Renaud
2022-06-11 16:25:14 +02:00
parent 8a4ad65936
commit 8f785482df

View File

@@ -1465,7 +1465,7 @@ class TestInstallMasterDNS(IntegrationTest):
['ipa', 'dnszone-show', self.master.domain.name]
).stdout_text
assert 'Active zone: TRUE' in result
assert 'Active zone: True' in result
class TestInstallMasterDNSRepeatedly(IntegrationTest):