summaryrefslogtreecommitdiff
path: root/test/base
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-24 19:55:43 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-24 19:55:43 -0400
commit232dcbfb19fb254ca887b1ec44be8cea564d2b89 (patch)
treec21cf55b2227dba62a591a72fcdc20ccdc376d3e /test/base
parent5f10d0d0e4bf11ea9ac2f4084fc3641b80877bf9 (diff)
downloadsqlalchemy-232dcbfb19fb254ca887b1ec44be8cea564d2b89.tar.gz
fix 2.5 failure
Diffstat (limited to 'test/base')
-rw-r--r--test/base/test_inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/base/test_inspect.py b/test/base/test_inspect.py
index b95b7d8c5..1e16fa4aa 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)