Skip to content

Commit

Permalink
Try with the function call on the outside
Browse files Browse the repository at this point in the history
Issue #252
  • Loading branch information
damies13 committed Nov 2, 2024
1 parent d48fc09 commit 1565cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Regression/Manager/GUI_Common.robot
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ Kill If Still Running
[Arguments] ${cmdname}
${processes}= Evaluate psutil.process_iter() modules=psutil
FOR ${p} IN ${processes}
IF "${cmdname}" in ${p.name()}
Evaluate ${p.kill()}
IF "${cmdname}" in ${p}.name()
Evaluate ${p}.kill()
END
END

Expand Down

0 comments on commit 1565cb5

Please sign in to comment.