From 843329f2fb6bb901049f27eea687657b07711983 Mon Sep 17 00:00:00 2001 From: Rasmus Lerchedahl Petersen Date: Wed, 26 Apr 2023 15:06:03 +0200 Subject: [PATCH] python: no longer missing --- .../experimental/dataflow/variable-capture/test_collections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ql/test/experimental/dataflow/variable-capture/test_collections.py b/python/ql/test/experimental/dataflow/variable-capture/test_collections.py index 0920c8d595a..5d47f06595c 100644 --- a/python/ql/test/experimental/dataflow/variable-capture/test_collections.py +++ b/python/ql/test/experimental/dataflow/variable-capture/test_collections.py @@ -52,7 +52,7 @@ def mod_list(l): return [mod_local(x) for x in l] l_modded = mod_list(l) -SINK(l_modded[0]) #$ MISSING: captured +SINK(l_modded[0]) #$ captured def mod_list_first(l): def mod_local(x):