From f8d7a367adacc625f16d00baf02e3a17beec9019 Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen Date: Tue, 17 Jan 2023 11:45:57 +0100 Subject: [PATCH] Python: Rewrite test for __add__ special method Co-authored-by: yoff --- .../library-tests/CallGraph/code/class_special_methods.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/ql/test/experimental/library-tests/CallGraph/code/class_special_methods.py b/python/ql/test/experimental/library-tests/CallGraph/code/class_special_methods.py index e765f155f3c..23dcefdb852 100644 --- a/python/ql/test/experimental/library-tests/CallGraph/code/class_special_methods.py +++ b/python/ql/test/experimental/library-tests/CallGraph/code/class_special_methods.py @@ -38,9 +38,9 @@ b.__call__(44) # $ pt,tt=Base.__call__ print("\n! b2") b2 = Base(2) # $ tt=Base.__init__ -# __add__ is called -b + b2 -b + 100 + +b + b2 # $ MISSING: tt=Base.__add__ +b + 100 # $ MISSING: tt=Base.__add__ # ========