Skip to content

Commit 0338d4e

Browse files
committed
This was the case locally, but not in CI.. 🤷
Revert "python: no longer missing" This reverts commit f796177.
1 parent d4953ef commit 0338d4e

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()
46+
OK() # Call not found
4747
return 0
4848

4949

5050
def test_index():
5151
import operator
5252

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

0 commit comments

Comments
 (0)