diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 653f7d8d8..f636568a0 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -233,7 +233,7 @@ def checkSqlInjection(place, parameter, value): # Skip test if the level is higher than the provided (or default) # value # Parse test's - if not conf.testFilter and not test.level > conf.level: + if not conf.testFilter and test.level > conf.level: debugMsg = "skipping test '%s' because the level (%d) " % (title, test.level) debugMsg += "is higher than the provided (%d)" % conf.level logger.debug(debugMsg)