From e4958e147747dd8811ee195651e850d6cee7ff13 Mon Sep 17 00:00:00 2001 From: Ilias Stamatis Date: Mon, 14 Aug 2017 19:35:33 +0300 Subject: [PATCH] Issue 93 - Fix test cases in ctl_dbtasks_test.py Description: There's a typo in ctl_dbtasks_test.py making 2 test cases to fail. https://pagure.io/lib389/issue/93 Author: Ilias95 Review by: ??? --- lib389/tests/cli/ctl_dbtasks_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib389/tests/cli/ctl_dbtasks_test.py b/lib389/tests/cli/ctl_dbtasks_test.py index f8abb53..f2c31e5 100644 --- a/lib389/tests/cli/ctl_dbtasks_test.py +++ b/lib389/tests/cli/ctl_dbtasks_test.py @@ -39,7 +39,7 @@ def test_ldif2db_db2ldif_no_repl(topology_be_latest): args = FakeArgs() args.backend = 'userRoot' args.ldif = os.path.join(standalone.get_ldif_dir(), "test.ldif") - args.encrypt = False + args.encrypted = False args.replication = False # Stop the instance dbtasks_db2ldif(standalone, topology_be_latest.logcap.log, args) @@ -57,7 +57,7 @@ def test_ldif2db_db2ldif_repl(topology_be_latest): args = FakeArgs() args.backend = 'userRoot' args.ldif = os.path.join(standalone.get_ldif_dir(), "test.ldif") - args.encrypt = False + args.encrypted = False args.replication = False args.archive = os.path.join(standalone.get_ldif_dir(), "test.ldif") # Stop the instance -- 2.13.4