summaryrefslogtreecommitdiff
path: root/test/orm/inheritance/basic.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-01-19 23:37:11 +0000
committerJason Kirtland <jek@discorporate.us>2008-01-19 23:37:11 +0000
commit4be99db15b7a62b37493c86da07bcc787f44a7df (patch)
treeb9d71342f22e307a08c38487d63c795039f10b96 /test/orm/inheritance/basic.py
parent21193cebe22f44982cb70ecd64743df63494b17d (diff)
downloadsqlalchemy-4be99db15b7a62b37493c86da07bcc787f44a7df.tar.gz
- Restored 2.3 compat. in lib/sqlalchemy
- Part one of test suite fixes to run on 2.3 Lots of failures still around sets; sets.Set differs from __builtin__.set particularly in the binops. We depend on set extensively now and may need to provide a corrected sets.Set subclass on 2.3.
Diffstat (limited to 'test/orm/inheritance/basic.py')
-rw-r--r--test/orm/inheritance/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/inheritance/basic.py b/test/orm/inheritance/basic.py
index 39b9fb916..3f3bf4bdb 100644
--- a/test/orm/inheritance/basic.py
+++ b/test/orm/inheritance/basic.py
@@ -215,7 +215,7 @@ class GetTest(ORMTest):
self.assert_sql_count(testing.db, go, 3)
- test_get.__name__ = name
+ test_get = _function_named(test_get, name)
return test_get
test_get_polymorphic = create_test(True, 'test_get_polymorphic')