diff --git a/test/base/test_inspect.py b/test/base/test_inspect.py index b95b7d8c57..1e16fa4aa9 100644 --- a/test/base/test_inspect.py +++ b/test/base/test_inspect.py @@ -32,10 +32,10 @@ class TestEvents(fixtures.TestBase): class SomeFoo(TestFixture): pass - @inspection._inspects(SomeFoo) class SomeFooInspect(object): def __init__(self, target): self.target = target + SomeFooInspect = inspection._inspects(SomeFoo)(SomeFooInspect) somefoo = SomeFoo() insp = inspect(somefoo)