From 71884176478917aa75a4277e580ed785f818b57d Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Mon, 1 Jul 2019 16:09:47 +0200 Subject: [PATCH] ipatests: fix ipatests/test_xmlrpc/test_dns_plugin.py The test is calling dnsrecord-mod --ttl and should expect a unicode value in order to be python2/python3 compatible. Related: https://pagure.io/freeipa/issue/7982 Reviewed-By: Alexander Bokovoy --- ipatests/test_xmlrpc/test_dns_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/test_xmlrpc/test_dns_plugin.py b/ipatests/test_xmlrpc/test_dns_plugin.py index 32c81f27d..6e3e12af7 100644 --- a/ipatests/test_xmlrpc/test_dns_plugin.py +++ b/ipatests/test_xmlrpc/test_dns_plugin.py @@ -1956,7 +1956,7 @@ class test_dns(Declarative): 'summary': None, 'result': { 'idnsname': [name1_dnsname], - 'dnsttl': ['500'], + 'dnsttl': [u'500'], 'arecord': [revname2_ip], }, },