Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 633 by mika.hanninen: Run Keyword Unless problem
http://code.google.com/p/robotframework/issues/detail?id=633
Robot Framework 2.5.1 (Python 2.6.4 on win32)
I have following TC...
${var1} = Run Keyword If '${test}' == 'PASS' blaa blaa
${var1} = Run Keyword Unless '${test}' == 'PASS' blaa blaa
First row returns expected for ${var1}, but the second row returns None for
${var1} although the Keyword is not executed according to the condition.
Of course this make the mess of the execution logic.