diff --git a/02-Keyword/tsg_bfapi/policy_object/Log.robot b/02-Keyword/tsg_bfapi/policy_object/Log.robot index 1c77c69..4b64634 100644 --- a/02-Keyword/tsg_bfapi/policy_object/Log.robot +++ b/02-Keyword/tsg_bfapi/policy_object/Log.robot @@ -130,8 +130,8 @@ toDigitList [Arguments] ${values} ${type} ${list} Create List FOR ${var} IN @{values} - ${var} Run Keyword If "${type}"=="int" Evaluate int('${var}') - ... ELSE Evaluate long('${var}') + #wx-fix python3中没有long类型,整形只有int类型,可以当做long类型使用 + ${var} Evaluate int('${var}') Append To List ${list} ${var} END [Return] ${list}