summaryrefslogtreecommitdiffstats
path: root/test/features/steps/auto_vertical.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-08 06:39:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-08 06:39:52 +0000
commitf96615a770febe0d511ad79d17169aca58095bf2 (patch)
tree60c586dcee842be1b061221a5fb454a153857585 /test/features/steps/auto_vertical.py
parentAdding upstream version 1.23.2. (diff)
downloadmycli-f96615a770febe0d511ad79d17169aca58095bf2.tar.xz
mycli-f96615a770febe0d511ad79d17169aca58095bf2.zip
Adding upstream version 1.24.1.upstream/1.24.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/features/steps/auto_vertical.py')
-rw-r--r--test/features/steps/auto_vertical.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/features/steps/auto_vertical.py b/test/features/steps/auto_vertical.py
index 974740d..e1cb26f 100644
--- a/test/features/steps/auto_vertical.py
+++ b/test/features/steps/auto_vertical.py
@@ -3,11 +3,12 @@ from textwrap import dedent
from behave import then, when
import wrappers
+from utils import parse_cli_args_to_dict
@when('we run dbcli with {arg}')
def step_run_cli_with_arg(context, arg):
- wrappers.run_cli(context, run_args=arg.split('='))
+ wrappers.run_cli(context, run_args=parse_cli_args_to_dict(arg))
@when('we execute a small query')