From 41a9189cce4aedea390baa6baf58c3673ec43f5e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 1 Nov 2014 19:07:01 -0400 Subject: actually, what am i doing --- t/overrides_test.py | 4 +--- 1 file changed, 1 insertion(+), 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): -- cgit v1.2.3-54-g00ecf