fix 2.5 failure

This commit is contained in:
Mike Bayer
2012-04-24 19:55:43 -04:00
parent 5f10d0d0e4
commit 232dcbfb19
+1 -1
View File
@@ -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)