summaryrefslogtreecommitdiff
path: root/test/orm/test_assorted_eager.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_assorted_eager.py')
-rw-r--r--test/orm/test_assorted_eager.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/orm/test_assorted_eager.py b/test/orm/test_assorted_eager.py
index dded00256..a1c96bdfa 100644
--- a/test/orm/test_assorted_eager.py
+++ b/test/orm/test_assorted_eager.py
@@ -9,12 +9,12 @@ be cleaned up and modernized.
import datetime
import sqlalchemy as sa
-from test.lib import testing
+from sqlalchemy import testing
from sqlalchemy import Integer, String, ForeignKey
-from test.lib.schema import Table, Column
+from sqlalchemy.testing.schema import Table, Column
from sqlalchemy.orm import mapper, relationship, backref, create_session
-from test.lib.testing import eq_
-from test.lib import fixtures
+from sqlalchemy.testing import eq_
+from sqlalchemy.testing import fixtures
class EagerTest(fixtures.MappedTest):