From: Mike Bayer Date: Thu, 11 Apr 2013 23:43:51 +0000 (-0400) Subject: python2.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3772b968318058a5cbbd98c33a369be72e0de435;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git python2.4 --- diff --git a/test/orm/test_subquery_relations.py b/test/orm/test_subquery_relations.py index d287eb0cce..3de363a9c8 100644 --- a/test/orm/test_subquery_relations.py +++ b/test/orm/test_subquery_relations.py @@ -12,6 +12,7 @@ from test.lib.assertsql import CompiledSQL from test.lib import fixtures from test.orm import _fixtures import sqlalchemy as sa +from test.orm.inheritance.test_polymorphic_rel import Person, Engineer, Paperwork class EagerTest(_fixtures.FixtureTest, testing.AssertsCompiledSQL): run_inserts = 'once' @@ -978,7 +979,6 @@ class OrderBySecondaryTest(fixtures.MappedTest): ]) self.assert_sql_count(testing.db, go, 2) -from .inheritance.test_polymorphic_rel import Person, Engineer, Paperwork class BaseRelationFromJoinedSubclassTest(fixtures.MappedTest): @classmethod