summaryrefslogtreecommitdiff
path: root/test/orm/alltests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/alltests.py')
-rw-r--r--test/orm/alltests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/orm/alltests.py b/test/orm/alltests.py
index dd2bd8446..73406c00d 100644
--- a/test/orm/alltests.py
+++ b/test/orm/alltests.py
@@ -1,4 +1,4 @@
-import testbase
+import testenv; testenv.configure_for_tests()
import unittest
import inheritance.alltests as inheritance
@@ -19,7 +19,7 @@ def suite():
'orm.assorted_eager',
'orm.naturalpks',
- 'orm.sessioncontext',
+ 'orm.sessioncontext',
'orm.unitofwork',
'orm.session',
'orm.cascade',
@@ -28,7 +28,7 @@ def suite():
'orm.merge',
'orm.pickled',
'orm.memusage',
-
+
'orm.cycles',
'orm.entity',
@@ -49,4 +49,4 @@ def suite():
if __name__ == '__main__':
- testbase.main(suite())
+ testenv.main(suite())