Closed
Description
I have noticed that following code:
*** Settings ***
Suite Setup Set Variables For ${CLUSTER_TYPE}
*** Variables ***
${CLUSTER_TYPE} Test
*** Test Cases ***
Do Nothing
No Operation
*** Keywords ***
Set Variables For Test
No Operation
Set Variables For Dev
No Operation
Set Variables For ${environment}
Fail Did not found setup method for ${environment}.
Works on 7.2.2 but doesn't work on 7.3:
It appears that previously we first checked for existence of keyword with the given name, but now we check the keywords with embedded variables first. Is this intentional change?