From 08b51e67c42eb257c7e9ad76516021ae206dc07f Mon Sep 17 00:00:00 2001 From: Rasmus Lerchedahl Petersen Date: Mon, 21 Sep 2020 17:44:36 +0200 Subject: [PATCH] Python: Update test annotation --- python/ql/test/experimental/dataflow/coverage/classes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ql/test/experimental/dataflow/coverage/classes.py b/python/ql/test/experimental/dataflow/coverage/classes.py index 350c10d5b04..830ad72d1c5 100644 --- a/python/ql/test/experimental/dataflow/coverage/classes.py +++ b/python/ql/test/experimental/dataflow/coverage/classes.py @@ -50,8 +50,8 @@ def test_new(): class With_init: def __init__(self): - SINK1(self) # Flow not found - OK() # Call not found + SINK1(self) + OK() def test_init():