From 394419c8b9205df948ffc88d782ff5a58cc89a07 Mon Sep 17 00:00:00 2001 From: Mark <mark@openappstack.net> Date: Thu, 2 Apr 2020 13:45:03 +0200 Subject: [PATCH] Fix syntax error --- test/login_logout/test/behave/features/steps/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/login_logout/test/behave/features/steps/login.py b/test/login_logout/test/behave/features/steps/login.py index 2cfe49d..f7ff2b6 100644 --- a/test/login_logout/test/behave/features/steps/login.py +++ b/test/login_logout/test/behave/features/steps/login.py @@ -31,7 +31,7 @@ def step_impl(context, element, variable): assert value in elem.text @then(u'I expect that the "{variable}" in the json output is the same as oauth variable "{value}"') -def step_impl(context, variable, value) +def step_impl(context, variable, value): assert context.oauth[value] == get_value_from_json_body(context, variable) @then(u'I expect that the "{variable}" in the json output is "{value}"') -- GitLab