diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-15 19:37:50 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-15 19:37:50 -0500 |
| commit | e1402efb198f96090833a9b561cdba8dee937f70 (patch) | |
| tree | c20dc33466476bbf394e8e19da7a045c8a008d08 /test/engine/test_bind.py | |
| parent | 756aa2724e495b8a969bca73d133b27615a343e7 (diff) | |
| download | sqlalchemy-e1402efb198f96090833a9b561cdba8dee937f70.tar.gz | |
- move sqlalchemy.test to test.lib
Diffstat (limited to 'test/engine/test_bind.py')
| -rw-r--r-- | test/engine/test_bind.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/engine/test_bind.py b/test/engine/test_bind.py index dfcc5e172..855c3611e 100644 --- a/test/engine/test_bind.py +++ b/test/engine/test_bind.py @@ -1,14 +1,14 @@ """tests the "bind" attribute/argument across schema and SQL, including the deprecated versions of these arguments""" -from sqlalchemy.test.testing import eq_ +from test.lib.testing import eq_ from sqlalchemy import engine, exc from sqlalchemy import MetaData, ThreadLocalMetaData from sqlalchemy import Integer, text -from sqlalchemy.test.schema import Table -from sqlalchemy.test.schema import Column +from test.lib.schema import Table +from test.lib.schema import Column import sqlalchemy as sa -from sqlalchemy.test import testing +from test.lib import testing class BindTest(testing.TestBase): |
