aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--t/overrides_test.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/overrides_test.py b/t/overrides_test.py
index eec0247..4051d65 100644
--- a/t/overrides_test.py
+++ b/t/overrides_test.py
@@ -9,9 +9,7 @@ from . import InMemoryDatabase
# obscure the implementation and make it not as easy to follow (we would have
# to manage call stacks ourselves), and so we just do this instead for now
def call_method_at_class(c, method_name, invocant, *args, **kwargs):
- method = c.all_methods()[method_name]
- attr = method.metaclass.all_attributes()["body"]
- return attr.value(method)(invocant, *args, **kwargs)
+ return c.all_methods()[method_name].execute(invocant, args, kwargs)
class OverridesTest(unittest.TestCase):
def test_accessor_generation(self):