summaryrefslogtreecommitdiff
path: root/tests/test_mssql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-12-03 13:29:05 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-12-03 13:29:05 -0500
commit1025488f3684415002f331fa2e557be7cdb447bb (patch)
tree3cfb0cfecd11c1b848ad7b2c196f3e78d990676f /tests/test_mssql.py
parent3bf28d1fc3e665ae81baa5e47609840ea6f42142 (diff)
downloadalembic-1025488f3684415002f331fa2e557be7cdb447bb.tar.gz
- Clean up file write operations so that
file handles are closed. - PyPy is supported.
Diffstat (limited to 'tests/test_mssql.py')
-rw-r--r--tests/test_mssql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mssql.py b/tests/test_mssql.py
index dbdb0ba..f86f01d 100644
--- a/tests/test_mssql.py
+++ b/tests/test_mssql.py
@@ -1,7 +1,7 @@
"""Test op functions against MSSQL."""
from tests import op_fixture, capture_context_buffer, \
- no_sql_testing_config, assert_raises_message, staging_env, \
+ _no_sql_testing_config, assert_raises_message, staging_env, \
three_rev_fixture, clear_staging_env
from alembic import op, command, util
from sqlalchemy import Integer, Column, ForeignKey, \
@@ -14,7 +14,7 @@ class FullEnvironmentTests(TestCase):
@classmethod
def setup_class(cls):
env = staging_env()
- cls.cfg = cfg = no_sql_testing_config("mssql")
+ cls.cfg = cfg = _no_sql_testing_config("mssql")
cls.a, cls.b, cls.c = \
three_rev_fixture(cfg)