diff --git a/python/ql/test/experimental/dataflow/typetracking/tracked.ql b/python/ql/test/experimental/dataflow/typetracking/tracked.ql index 9416701de0f..4a8dc5d9196 100644 --- a/python/ql/test/experimental/dataflow/typetracking/tracked.ql +++ b/python/ql/test/experimental/dataflow/typetracking/tracked.ql @@ -27,8 +27,8 @@ module TrackedTest implements TestSig { // We do not wish to annotate scope entry definitions, // as they do not appear in the source code. not e.asCfgNode() = any(ScopeEntryDefinition def).getDefiningNode() and - // ...same for CaptureNodes - not e instanceof DataFlow::CaptureNode and + // ...same for `SynthCaptureNode`s + not e instanceof DataFlow::SynthCaptureNode and tag = "tracked" and location = e.getLocation() and value = t.getAttr() and