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

Remove variable redefinition

parent 19e0f7b8
No related branches found
No related tags found
1 merge request!5Service Integration
......@@ -33,16 +33,12 @@ def step_impl(context, element, variable):
@then(u'I expect that the "{variable}" in the json output is "{value}"')
def step_impl(context, variable, value):
values = get_object_from_json_body(context)
if value in context.oauth:
value = context.oauth[value]
assert values[variable] == value
assert values[variable] == context.oauth[value]
@then(u'I expect that the "{variable}" in the json output contains "{value}"')
def step_impl(context, variable, value):
values = get_object_from_json_body(context)
if value in context.oauth:
value = context.oauth[value]
assert value in values[variable]
assert context.oauth[value] in values[variable]
def get_object_from_json_body(context):
values_text = context.behave_driver.get_element("body").text
......
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