From: Mike Bayer Date: Tue, 24 Apr 2012 23:55:43 +0000 (-0400) Subject: fix 2.5 failure X-Git-Tag: rel_0_8_0b1~445 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=232dcbfb19fb254ca887b1ec44be8cea564d2b89;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix 2.5 failure --- 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)