summaryrefslogtreecommitdiffstats
path: root/ipatests
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2014-08-05 09:12:24 +0200
committerPetr Viktorin <pviktori@redhat.com>2014-09-17 09:36:27 +0200
commit1f8f762b84e7448cb279b6db5158f93b5f517827 (patch)
tree3054dc72edc6655316baedfdd908b2ec57a5f384 /ipatests
parent9ca5a4e42084ba43e106fa3be9dac9965216e710 (diff)
downloadfreeipa-1f8f762b84e7448cb279b6db5158f93b5f517827.tar.gz
freeipa-1f8f762b84e7448cb279b6db5158f93b5f517827.tar.xz
freeipa-1f8f762b84e7448cb279b6db5158f93b5f517827.zip
ipalib: host_del: Extend LDAPDelete's takes_options instead of overriding
The host-del command did not accept --continue option, since the takes_options was overriden and did not take the options from LDAPDelete. Fix the behaviour. https://fedorahosted.org/freeipa/ticket/4473 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipatests')
-rw-r--r--ipatests/test_xmlrpc/test_host_plugin.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/ipatests/test_xmlrpc/test_host_plugin.py b/ipatests/test_xmlrpc/test_host_plugin.py
index a98fed1b6..7c0312bae 100644
--- a/ipatests/test_xmlrpc/test_host_plugin.py
+++ b/ipatests/test_xmlrpc/test_host_plugin.py
@@ -139,10 +139,7 @@ sshpubkeyfp = u'13:67:6B:BF:4E:A2:05:8E:AE:25:8B:A1:31:DE:6F:1B public key test
class test_host(Declarative):
cleanup_commands = [
- ('host_del', [fqdn1], {}),
- ('host_del', [fqdn2], {}),
- ('host_del', [fqdn3], {}),
- ('host_del', [fqdn4], {}),
+ ('host_del', [fqdn1, fqdn2, fqdn3, fqdn4], {'continue': True}),
('service_del', [service1], {}),
]