From 15374cf58fe26396be7bc70d7133b501b11dad6d Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 10 Jun 2014 19:04:49 +0200 Subject: webui-ci: adjust tests to dns changes All DNS Zone names must be fully qualified. Reviewed-By: Endi Sukma Dewata --- ipatests/test_webui/test_dns.py | 2 +- ipatests/test_webui/test_host.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ipatests') diff --git a/ipatests/test_webui/test_dns.py b/ipatests/test_webui/test_dns.py index c136460ce..62f6040a7 100644 --- a/ipatests/test_webui/test_dns.py +++ b/ipatests/test_webui/test_dns.py @@ -30,7 +30,7 @@ CONFIG_ENTITY = 'dnsconfig' ZONE_DEFAULT_FACET = 'records' -ZONE_PKEY = 'foo.itest' +ZONE_PKEY = 'foo.itest.' ZONE_DATA = { 'pkey': ZONE_PKEY, diff --git a/ipatests/test_webui/test_host.py b/ipatests/test_webui/test_host.py index f5780f868..4b1d42012 100644 --- a/ipatests/test_webui/test_host.py +++ b/ipatests/test_webui/test_host.py @@ -58,7 +58,7 @@ class host_tasks(UI_driver): if self.has_dns(): add_data = [ ('textbox', 'hostname', host), - ('combobox', 'dnszone', domain), + ('combobox', 'dnszone', domain+'.'), ] if ip: add_data.append(('textbox', 'ip_address', ip)) -- cgit