Changeset 95941 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui/wuitestresultfailure.py
- Timestamp:
- Jul 29, 2022 1:46:07 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuitestresultfailure.py
r93115 r95941 93 93 """ 94 94 aoActions = super(WuiTestResultFailure, self)._generateTopRowFormActions(oData); 95 if oData and oData.idTestResult is not None and oData.idTestResult> 0:95 if oData and oData.idTestResult and int(oData.idTestResult) > 0: 96 96 aoActions.append(WuiTmLink('Associated Test Set', WuiMain.ksScriptName, 97 97 { WuiMain.ksParamAction: WuiMain.ksActionTestSetDetailsFromResult, … … 99 99 )); 100 100 return aoActions; 101
Note:
See TracChangeset
for help on using the changeset viewer.