Skip to content

Commit 24c9aff

Browse files
committed
Python: Fix a type-tracking test
1 parent 0957801 commit 24c9aff

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def meth3(self):
135135
def track_self(self): # $ tracked_self
136136
self.meth1() # $ tracked_self
137137
super().meth2()
138-
super(Bar, self).foo3() # $ tracked_self
138+
super(Bar, self).meth3() # $ tracked_self
139139

140140
# ------------------------------------------------------------------------------
141141
# Tracking of attribute lookup after "long" import chain

0 commit comments

Comments
 (0)