summaryrefslogtreecommitdiffstats
path: root/test/features/steps/auto_vertical.py
diff options
context:
space:
mode:
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')