Skip to content

Commit 8d3d088

Browse files
committed
Merge branch 'master' into opnew
2 parents d71098d + 0b09bfe commit 8d3d088

File tree

1 file changed

+3
-3
lines changed
  • python/ql/test/library-tests/examples/custom-sanitizer

1 file changed

+3
-3
lines changed

python/ql/test/library-tests/examples/custom-sanitizer/TestTaint.ql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import python
22
import semmle.python.security.TaintTracking
33
import Taint
44

5-
from Call call, Expr arg,
6-
boolean expected_taint, boolean has_taint, string test_res,
5+
from
6+
Call call, Expr arg, boolean expected_taint, boolean has_taint, string test_res,
77
string taint_string
88
where
99
call.getLocation().getFile().getShortName() = "test.py" and
@@ -26,6 +26,6 @@ where
2626
has_taint = true
2727
) and
2828
if expected_taint = has_taint then test_res = "ok" else test_res = "failure"
29-
// if expected_taint = has_taint then test_res = "✓" else test_res = "✕"
29+
// if expected_taint = has_taint then test_res = "✓" else test_res = "✕"
3030
select arg.getLocation().toString(), call.getScope().(Function).getName(), arg.toString(),
3131
taint_string, test_res

0 commit comments

Comments
 (0)