webui-ci: adjust tests to dns changes

All DNS Zone names must be fully qualified.

Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
Petr Vobornik 2014-06-10 19:04:49 +02:00
parent c2e6b74029
commit 15374cf58f
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ CONFIG_ENTITY = 'dnsconfig'
ZONE_DEFAULT_FACET = 'records' ZONE_DEFAULT_FACET = 'records'
ZONE_PKEY = 'foo.itest' ZONE_PKEY = 'foo.itest.'
ZONE_DATA = { ZONE_DATA = {
'pkey': ZONE_PKEY, 'pkey': ZONE_PKEY,

View File

@ -58,7 +58,7 @@ class host_tasks(UI_driver):
if self.has_dns(): if self.has_dns():
add_data = [ add_data = [
('textbox', 'hostname', host), ('textbox', 'hostname', host),
('combobox', 'dnszone', domain), ('combobox', 'dnszone', domain+'.'),
] ]
if ip: if ip:
add_data.append(('textbox', 'ip_address', ip)) add_data.append(('textbox', 'ip_address', ip))