From 8f785482df01ea2dd8574ea36cfd762c816d8367 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Sat, 11 Jun 2022 16:25:14 +0200 Subject: [PATCH] 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 Reviewed-By: Alexander Bokovoy --- ipatests/test_integration/test_installation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/test_integration/test_installation.py b/ipatests/test_integration/test_installation.py index 62e339189..635ead45e 100644 --- a/ipatests/test_integration/test_installation.py +++ b/ipatests/test_integration/test_installation.py @@ -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):