summaryrefslogtreecommitdiff
path: root/test/orm/test_selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 15:04:06 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 15:04:06 -0400
commita3083eabf467e7f36db0850342758ce162c3eef8 (patch)
treec5df6fc158ea92c4b4cc1ae0f7709a4cb25d8a5e /test/orm/test_selectable.py
parentd0156a75ffab342e7ef299cdea9ee0a0b6f8bf0d (diff)
downloadsqlalchemy-a3083eabf467e7f36db0850342758ce162c3eef8.tar.gz
- move all the setup_classes(cls) and setup_mappers(cls) to use a
local cls.Basic, cls.Comparable base class so that there is no ambiguity or hash identity behaviors getting in the way of class registration.
Diffstat (limited to 'test/orm/test_selectable.py')
-rw-r--r--test/orm/test_selectable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/test_selectable.py b/test/orm/test_selectable.py
index bbbf3b331..8eb7e38c1 100644
--- a/test/orm/test_selectable.py
+++ b/test/orm/test_selectable.py
@@ -22,7 +22,7 @@ class SelectableNoFromsTest(_base.MappedTest, AssertsCompiledSQL):
@classmethod
def setup_classes(cls):
- class Subset(_base.ComparableEntity):
+ class Subset(cls.Comparable):
pass
def test_no_tables(self):