Tests: fix option name for dsctl

389-ds-base has modified one option name in dsctl, and our test
test_uninstallation.py::TestUninstallBase::()::test_failed_uninstall
is still using the old option (--doit) instead of the new one
(--do-it).

Fixes: https://pagure.io/freeipa/issue/7856
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Florence Blanc-Renaud 2019-02-05 16:43:06 +01:00 committed by Rob Crittenden
parent b763bc7952
commit 0376d7043c

View File

@ -115,5 +115,5 @@ class TestUninstallBase(IntegrationTest):
])
self.master.run_command([
paths.DSCTL, serverid, 'remove', '--doit'
paths.DSCTL, serverid, 'remove', '--do-it'
])