diff --git a/lib/core/common.py b/lib/core/common.py index 5b9ea7afd..6d9b7c020 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2823,7 +2823,7 @@ def getSortedInjectionTests(): retVal = SORT_ORDER.LAST elif 'details' in test and 'dbms' in test.details: - if test.details.dbms in Backend.getErrorParsedDBMSes(): + if intersect(test.details.dbms, Backend.getErrorParsedDBMSes()): retVal = SORT_ORDER.SECOND else: retVal = SORT_ORDER.THIRD