Skip to content

Commit 706e9dc

Browse files
committedDec 20, 2023
Python: fix compilation
1 parent 45411f4 commit 706e9dc

File tree

1 file changed

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

1 file changed

+2
-1
lines changed
 

‎python/ql/test/experimental/dataflow/typetracking/tracked.ql

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import semmle.python.dataflow.new.DataFlow
33
import semmle.python.dataflow.new.TypeTracking
44
import TestUtilities.InlineExpectationsTest
55
import semmle.python.ApiGraphs
6+
private import semmle.python.dataflow.new.internal.DataFlowPrivate as DP
67

78
// -----------------------------------------------------------------------------
89
// tracked
@@ -28,7 +29,7 @@ module TrackedTest implements TestSig {
2829
// as they do not appear in the source code.
2930
not e instanceof DataFlow::ScopeEntryDefinitionNode and
3031
// ...same for `SynthCaptureNode`s
31-
not e instanceof DataFlow::SynthCaptureNode and
32+
not e instanceof DP::SynthCaptureNode and
3233
tag = "tracked" and
3334
location = e.getLocation() and
3435
value = t.getAttr() and

0 commit comments

Comments
 (0)