From 17d3c8764e020379e54053bca0b0a2bc71d48aa0 Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Sat, 12 Jan 2008 22:03:42 +0000 Subject: - testbase is gone, replaced by testenv - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts --- test/orm/manytomany.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/orm/manytomany.py') diff --git a/test/orm/manytomany.py b/test/orm/manytomany.py index 32e3a5c37..ca6410533 100644 --- a/test/orm/manytomany.py +++ b/test/orm/manytomany.py @@ -1,4 +1,4 @@ -import testbase +import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * @@ -314,4 +314,4 @@ class M2MTest3(ORMTest): if __name__ == "__main__": - testbase.main() + testenv.main() -- cgit v1.2.1