summaryrefslogtreecommitdiff
path: root/test/sql/selectable.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/selectable.py')
-rwxr-xr-xtest/sql/selectable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/selectable.py b/test/sql/selectable.py
index 850e29e16..a64697b81 100755
--- a/test/sql/selectable.py
+++ b/test/sql/selectable.py
@@ -2,7 +2,7 @@
useable primary keys and foreign keys. Full relational algebra depends on
every selectable unit behaving nicely with others.."""
-import testbase
+import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from testlib import *
@@ -309,4 +309,4 @@ class DerivedTest(AssertMixin):
assert not t2.select().alias('foo').is_derived_from(t1)
if __name__ == "__main__":
- testbase.main()
+ testenv.main()