Python: Accept .expected for typetracking-summaries

This commit is contained in:
Rasmus Wriedt Larsen
2024-03-15 10:24:33 +01:00
parent 00f2a6a65e
commit 6babb2ff90

View File

@@ -41,8 +41,8 @@ tms = tainted_mapped_summary[0]
tms # $ MISSING: tracked
another_tainted_list = TTS_append_to_list([], tracked) # $ tracked
atl = another_tainted_list[0]
atl # $ MISSING: tracked
atl = another_tainted_list[0] # $ tracked
atl # $ tracked
# This will not work, as the call is not found by `getACallSimple`.
from json import loads as json_loads