summaryrefslogtreecommitdiff
path: root/tests/test_mssql.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_mssql.py')
-rw-r--r--tests/test_mssql.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/tests/test_mssql.py b/tests/test_mssql.py
index 66cdb9a..398d228 100644
--- a/tests/test_mssql.py
+++ b/tests/test_mssql.py
@@ -1,11 +1,14 @@
"""Test op functions against MSSQL."""
from __future__ import with_statement
-from tests import op_fixture, capture_context_buffer, \
+
+from unittest import TestCase
+
+from sqlalchemy import Integer, Column
+
+from alembic import op, command, util
+from . import op_fixture, capture_context_buffer, \
_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
-from unittest import TestCase
class FullEnvironmentTests(TestCase):