diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
commit | 68a350d462b6840d6623a89565f8febf3a997830 (patch) | |
tree | 4d3ea4d93d14738a1c5a418a37917f80a41cf85e /test/base/test_except.py | |
parent | a3083eabf467e7f36db0850342758ce162c3eef8 (diff) | |
download | sqlalchemy-68a350d462b6840d6623a89565f8febf3a997830.tar.gz |
- remove test.sql._base, test.engine._base, test.orm._base, move those classes to a new test.lib.fixtures module
- move testing.TestBase to test.lib.fixtures
- massive search and replace
Diffstat (limited to 'test/base/test_except.py')
-rw-r--r-- | test/base/test_except.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/base/test_except.py b/test/base/test_except.py index 044e7c244..eef247063 100644 --- a/test/base/test_except.py +++ b/test/base/test_except.py @@ -2,7 +2,7 @@ from sqlalchemy import exc as sa_exceptions -from test.lib import TestBase +from test.lib import fixtures # Py3K #StandardError = BaseException @@ -33,7 +33,7 @@ class OutOfSpec(DatabaseError): pass -class WrapTest(TestBase): +class WrapTest(fixtures.TestBase): def test_db_error_normal(self): try: |