summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/test_host.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_webui/test_host.py')
-rw-r--r--ipatests/test_webui/test_host.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipatests/test_webui/test_host.py b/ipatests/test_webui/test_host.py
index cb697c5e0..09200061b 100644
--- a/ipatests/test_webui/test_host.py
+++ b/ipatests/test_webui/test_host.py
@@ -203,13 +203,13 @@ class test_host(host_tasks):
Test Kerberos flags
http://www.freeipa.org/page/V3/Kerberos_Flags
"""
- pkey = self.config.get('ipa_server')
name = 'ipakrbokasdelegate'
mod = {'mod': [('checkbox', name, '')]}
checked = ['checked']
self.init_app()
- self.navigate_to_record(pkey, entity=ENTITY)
+ self.add_record(ENTITY, self.data)
+ self.navigate_to_record(self.pkey)
if self.get_field_checked(name) == checked:
self.mod_record(ENTITY, mod) # uncheck
@@ -218,6 +218,7 @@ class test_host(host_tasks):
self.validate_fields([('checkbox', name, checked)])
self.mod_record(ENTITY, mod)
self.validate_fields([('checkbox', name, [])])
+ self.delete_record(self.pkey, self.data.get('del'))
def test_associations(self):
"""