update MaD test to reflect that dotted module names don't work

This commit is contained in:
Erik Krogh Kristensen
2022-05-12 14:45:29 +02:00
parent 31e9876de7
commit dea5596289
2 changed files with 1 additions and 2 deletions

View File

@@ -48,7 +48,6 @@ isSink
| test.py:87:8:87:67 | ControlFlowNode for Attribute() | test-sink |
| test.py:89:21:89:23 | ControlFlowNode for one | test-source |
| test.py:90:25:90:27 | ControlFlowNode for one | test-source |
| test.py:95:6:95:9 | ControlFlowNode for baz1 | test-source |
| test.py:98:6:98:9 | ControlFlowNode for baz2 | test-source |
isSource
| test.py:3:5:3:15 | ControlFlowNode for getSource() | test-source |

View File

@@ -92,7 +92,7 @@ CallFilter.arityOne(one, two=two) # NO match
CallFilter.arityOne(one=one, two=two) # NO match
from foo1.bar import baz1
baz1(baz1) # match
baz1(baz1) # no match, and that's the point.
from foo2.bar import baz2
baz2(baz2) # match