From 5fadee969cae3b66b986fb9e28fdbf3bb5ec2f60 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 6 May 2015 12:26:18 +0200 Subject: webui-ci: fix type error in host_tasks inicializations host_tasks initializations were not modified along with pytest migration Reviewed-By: Martin Babinsky --- ipatests/test_webui/test_selinuxusermap.py | 3 ++- ipatests/test_webui/test_sudo.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ipatests/test_webui/test_selinuxusermap.py b/ipatests/test_webui/test_selinuxusermap.py index 385b8dd06..65f7f33dd 100644 --- a/ipatests/test_webui/test_selinuxusermap.py +++ b/ipatests/test_webui/test_selinuxusermap.py @@ -58,7 +58,8 @@ class test_selinuxusermap(UI_driver): Mod: selinuxusermap """ self.init_app() - host = host_tasks(self.driver, self.config) + host = host_tasks() + host.setup(self.driver, self.config) self.add_record(user.ENTITY, user.DATA) self.add_record(user.ENTITY, user.DATA2, navigate=False) diff --git a/ipatests/test_webui/test_sudo.py b/ipatests/test_webui/test_sudo.py index 94e0892b0..ab484a09e 100644 --- a/ipatests/test_webui/test_sudo.py +++ b/ipatests/test_webui/test_sudo.py @@ -50,7 +50,8 @@ class test_sudo(UI_driver): Mod: sudo """ self.init_app() - host = host_tasks(self.driver, self.config) + host = host_tasks() + host.setup(self.driver, self.config) self.add_record(netgroup.ENTITY, netgroup.DATA2) -- cgit