Skip to content
Snippets Groups Projects
Verified Commit 394419c8 authored by Mark's avatar Mark
Browse files

Fix syntax error

parent dae14c1f
No related branches found
No related tags found
1 merge request!24Resolve "Add tests for remember me button"
Pipeline #3440 passed with stage
in 1 minute
...@@ -31,7 +31,7 @@ def step_impl(context, element, variable): ...@@ -31,7 +31,7 @@ def step_impl(context, element, variable):
assert value in elem.text assert value in elem.text
@then(u'I expect that the "{variable}" in the json output is the same as oauth variable "{value}"') @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) assert context.oauth[value] == get_value_from_json_body(context, variable)
@then(u'I expect that the "{variable}" in the json output is "{value}"') @then(u'I expect that the "{variable}" in the json output is "{value}"')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment