Skip to content

Commit 6babb2f

Browse files
committed
Python: Accept .expected for typetracking-summaries
1 parent 00f2a6a commit 6babb2f

File tree

1 file changed

+2
-2
lines changed
  • python/ql/test/experimental/dataflow/typetracking-summaries

1 file changed

+2
-2
lines changed

python/ql/test/experimental/dataflow/typetracking-summaries/summaries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def explicit_identity(x):
4141
tms # $ MISSING: tracked
4242

4343
another_tainted_list = TTS_append_to_list([], tracked) # $ tracked
44-
atl = another_tainted_list[0]
45-
atl # $ MISSING: tracked
44+
atl = another_tainted_list[0] # $ tracked
45+
atl # $ tracked
4646

4747
# This will not work, as the call is not found by `getACallSimple`.
4848
from json import loads as json_loads

0 commit comments

Comments
 (0)