summaryrefslogtreecommitdiff
path: root/test/orm/inheritance/test_basic.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 17:19:00 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 17:19:00 -0400
commit7b24e458c7523694ab07acb31b67d1c00e7a266a (patch)
treee3f2319b6e9df82492ec9719bbfc2884b792a1a3 /test/orm/inheritance/test_basic.py
parent68a350d462b6840d6623a89565f8febf3a997830 (diff)
downloadsqlalchemy-7b24e458c7523694ab07acb31b67d1c00e7a266a.tar.gz
- move all the comments that got shoved below the fixture grabs back up
Diffstat (limited to 'test/orm/inheritance/test_basic.py')
-rw-r--r--test/orm/inheritance/test_basic.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/orm/inheritance/test_basic.py b/test/orm/inheritance/test_basic.py
index cdd9bf56b..c4c18eb4b 100644
--- a/test/orm/inheritance/test_basic.py
+++ b/test/orm/inheritance/test_basic.py
@@ -1235,11 +1235,12 @@ class OptimizedLoadTest(fixtures.MappedTest):
)
def test_optimized_passes(self):
- base, sub = self.tables.base, self.tables.sub
-
""""test that the 'optimized load' routine doesn't crash when
a column in the join condition is not available."""
+ base, sub = self.tables.base, self.tables.sub
+
+
class Base(fixtures.ComparableEntity):
pass
class Sub(Base):