Commit f542dfc9 authored by Andrea Il Grande's avatar Andrea Il Grande
Browse files

fixed an error in AssertionUtils

parent a8b5cc00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ Check Response Headers ID Not Empty
Check Response Body Containing an Attribute set to
    [Arguments]    ${expected_attribute_name}    ${response_body}    ${expected_attribute_value}=${EMPTY}
    Should Not Be Empty    ${response_body['${expected_attribute_name}']}
    IF    '${expected_attribute_value}'!=''
    IF    ${expected_attribute_value}!=''
        Should Be Equal    ${response_body['${expected_attribute_name}']}    ${expected_attribute_value}
    END