diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-14 03:34:38 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-14 03:34:38 +0000 |
| commit | 6c6cd47c024c5ea2cada04534aca818f95b8ea8c (patch) | |
| tree | bbdb86a8eddc32cb2548a309146106e4d2026b62 /test/testlib/__init__.py | |
| parent | b9ed823528ef88fb0dc64120e1e501306f4c3768 (diff) | |
| download | sqlalchemy-6c6cd47c024c5ea2cada04534aca818f95b8ea8c.tar.gz | |
- fixed endless loop
- fixed perf imports in masseagerload
Diffstat (limited to 'test/testlib/__init__.py')
| -rw-r--r-- | test/testlib/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py index bfc2ba04b..046f8f9b4 100644 --- a/test/testlib/__init__.py +++ b/test/testlib/__init__.py @@ -7,10 +7,10 @@ import testlib.config from testlib.schema import Table, Column import testlib.testing as testing from testlib.testing import PersistTest, AssertMixin, ORMTest, SQLCompileTest -import testlib.profiling +import testlib.profiling as profiling import testlib.engines __all__ = ('testing', 'Table', 'Column', - 'PersistTest', 'AssertMixin', 'ORMTest', 'SQLCompileTest') + 'PersistTest', 'AssertMixin', 'ORMTest', 'SQLCompileTest', 'profiling') |
