From 73ef15ccb49671f0fd401018e68675e16f674bd3 Mon Sep 17 00:00:00 2001 From: Pavel Vomacka Date: Wed, 20 Jul 2016 16:15:07 +0200 Subject: Fix test which checks removing of user The name of delete action is now 'delete_active_user' not just 'delete' therefore tests needs to be fixed. https://fedorahosted.org/freeipa/ticket/6052 Reviewed-By: Lenka Doudova --- ipatests/test_webui/test_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/test_webui/test_user.py b/ipatests/test_webui/test_user.py index 5b509d18c..e926c2212 100644 --- a/ipatests/test_webui/test_user.py +++ b/ipatests/test_webui/test_user.py @@ -161,7 +161,7 @@ class test_user(UI_driver): self.action_list_action('unlock') # delete - self.delete_action(user.ENTITY, user.PKEY) + self.delete_action(user.ENTITY, user.PKEY, action='delete_active_user') @screenshot def test_password_expiration_notification(self): -- cgit