Greetings! Fix for ipatests/test_xmlrpc/test_dns_plugin.py
Fix conflict between “got” and “expected” values when testing "dnsconfig_mod: Update global DNS settings" Best regards, Ganna Kaihorodova Associate Software Quality Engineer
From 94899bbb538129384a7faa22be1228e2fcd453cf Mon Sep 17 00:00:00 2001 From: Ganna Kaihorodova <[email protected]> Date: Mon, 18 Jul 2016 19:20:51 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Fix=20conflict=20between=20=E2=80=9Cgot?= =?UTF-8?q?=E2=80=9D=20and=20=E2=80=9Cexpected=E2=80=9D=20values=20when=20?= =?UTF-8?q?testing=20"dnsconfig=5Fmod:=20Update=20global=20DNS=20settings"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ipatests/test_xmlrpc/test_dns_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ipatests/test_xmlrpc/test_dns_plugin.py b/ipatests/test_xmlrpc/test_dns_plugin.py index 038d17e9debc86a8e9afcadcea30e7cee29bbd05..fd32ef24beeaa245e829554fb7a6da173f6624bc 100644 --- a/ipatests/test_xmlrpc/test_dns_plugin.py +++ b/ipatests/test_xmlrpc/test_dns_plugin.py @@ -1781,6 +1781,7 @@ class test_dns(Declarative): }}, ), 'result': { + 'dns_server_server': [api.env.host], 'idnsforwarders': [fwd_ip], }, }, @@ -1792,7 +1793,7 @@ class test_dns(Declarative): expected={ 'value': None, 'summary': u'Global DNS configuration is empty', - 'result': {}, + 'result': {'dns_server_server': [api.env.host]}, }, ), -- 2.7.4
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code
