Closed
Description
7.3.1 contains a regression for the following test.
I've raised this as a fresh issue because I think it shouldn't be buried in a closed issue.
Following passes with 7.3 and fails to No keyword with name 'Mykeyword ${v2}' found. and ${v3} with 7.3.1:
*** Variables ***
${v1} val1
${v2} "val2"
${v3} foo val3 bar
*** Test Cases ***
Test1
Run Keyword And Continue On Failure Mykeyword "${v1}"
Run Keyword And Continue On Failure Mykeyword ${v2}
Test2
Run Keyword And Continue On Failure Mykeyword2 foo ${v1} bar
Run Keyword And Continue On Failure Mykeyword2 ${v3}
*** Keywords ***
Mykeyword "${arg}"
Log ${arg}
Mykeyword2 foo ${arg} bar
Log KW2 ${arg}
Related to #5444