diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 15:04:06 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 15:04:06 -0400 |
| commit | a3083eabf467e7f36db0850342758ce162c3eef8 (patch) | |
| tree | c5df6fc158ea92c4b4cc1ae0f7709a4cb25d8a5e /test/orm/test_selectable.py | |
| parent | d0156a75ffab342e7ef299cdea9ee0a0b6f8bf0d (diff) | |
| download | sqlalchemy-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.py | 2 |
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): |
