Changeset 61218 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 26, 2016 8:05:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testresults.py
r61217 r61218 878 878 ' ON TestResults.idTestResult = TestResultFailures.idTestResult\n' \ 879 879 ' AND TestResultFailures.tsExpire = \'infinity\'::TIMESTAMP'; 880 if sSortingOrderBy .find('FailureReason') >= 0:880 if sSortingOrderBy is not None and sSortingOrderBy.find('FailureReason') >= 0: 881 881 sQuery += '\n' \ 882 882 ' LEFT OUTER JOIN FailureReasons\n' \
Note:
See TracChangeset
for help on using the changeset viewer.