test-fullautomation / robotframework-testsuitesmanagement

Apache License 2.0
4 stars 2 forks source link

Changed behavior of TestsuitesManagement (exception) #262

Open HolQue opened 3 months ago

HolQue commented 3 months ago

With latest changes in stabi branch, the behavior of the TestsuitesManagement changed in some cases.

Previously this has been accepted:

"param+1" : "value"

or

"param-1" : "value"

Now this causes:

UNKNOWN - Exception occurred.

But if this is not a violation of Robot Framework naming conventions, it should still be allowed. Or I expect a naming convention error message.

HolQue commented 3 months ago

At least I can do this:

Set Test Variable    ${param-2}    param-2 value
log    value of param-2 is: ${param-2}

This is accepted.