Accept fixed MISSING tests

This commit is contained in:
Owen Mansel-Chan
2026-06-11 15:44:20 +02:00
parent 73bc2d70ae
commit befb557bfd
2 changed files with 3 additions and 6 deletions

View File

@@ -1,9 +1,6 @@
testFailures
debug_callableNotUnique
pointsTo_found_typeTracker_notFound
| code/class_attr_assign.py:10:9:10:27 | ControlFlowNode for Attribute() | my_func |
| code/class_attr_assign.py:11:9:11:25 | ControlFlowNode for Attribute() | my_func |
| code/class_attr_assign.py:26:9:26:25 | ControlFlowNode for Attribute() | DummyObject.method |
| code/class_super.py:50:1:50:6 | ControlFlowNode for Attribute() | outside_def |
| code/conditional_in_argument.py:18:5:18:11 | ControlFlowNode for Attribute() | X.bar |
| code/func_defined_outside_class.py:21:1:21:11 | ControlFlowNode for Attribute() | A.foo |

View File

@@ -7,8 +7,8 @@ class Foo(object):
self.direct_ref = my_func
def later(self):
self.indirect_ref() # $ pt=my_func MISSING: tt=my_func
self.direct_ref() # $ pt=my_func MISSING: tt=my_func
self.indirect_ref() # $ pt=my_func tt=my_func
self.direct_ref() # $ pt=my_func tt=my_func
foo = Foo(my_func) # $ tt=Foo.__init__
foo.later() # $ pt,tt=Foo.later
@@ -23,7 +23,7 @@ class Bar(object):
self.obj = DummyObject()
def later(self):
self.obj.method() # $ pt=DummyObject.method MISSING: tt=DummyObject.method
self.obj.method() # $ pt=DummyObject.method tt=DummyObject.method
bar = Bar(my_func) # $ tt=Bar.__init__