Skip to content

Commit 0729c92

Browse files
author
Brian Williams
committed
Fix incorrect argument
1 parent 1e36b27 commit 0729c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: robot/robottestlinkhelper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _get_param_from_robot(self, robot_variable):
2929

3030
def _get_missing_params_from_robot_variables(self, param_dict):
3131
for testlink_param, robot_variable in robot_report_params.items():
32-
setdefault_if_not_none(param_dict, testlink_param, self._get_param_from_robot(testlink_param))
32+
setdefault_if_not_none(param_dict, testlink_param, self._get_param_from_robot(robot_variable))
3333

3434
def _setParamsFromRobot(self):
3535
"""

0 commit comments

Comments
 (0)