Skip to content

Commit f796177

Browse files
committed
python: no longer missing
1 parent 141c5af commit f796177

File tree

1 file changed

+2
-2
lines changed
  • python/ql/test/experimental/dataflow/coverage-py2

1 file changed

+2
-2
lines changed

python/ql/test/experimental/dataflow/coverage-py2/classes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ def OK():
4343
class With_index:
4444
def __index__(self):
4545
SINK1(self)
46-
OK() # Call not found
46+
OK()
4747
return 0
4848

4949

5050
def test_index():
5151
import operator
5252

53-
with_index = With_index() #$ MISSING: arg1="SSA variable with_index" func=With_index.__index__
53+
with_index = With_index() #$ arg1="SSA variable with_index" func=With_index.__index__
5454
operator.index(with_index)

0 commit comments

Comments
 (0)