diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-23 19:12:59 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-23 19:12:59 -0400 |
commit | cb5935fafa3740ddf2fbbeaf2bcc99c837a2d420 (patch) | |
tree | 34912a14e4906f61fd5a436833128aed2147b604 /tests/test_config.py | |
parent | d5c8d6ed61abc98dc95464e50f07ef2648b36d69 (diff) | |
download | alembic-cb5935fafa3740ddf2fbbeaf2bcc99c837a2d420.tar.gz |
need to use SQLA's approach of calling mock from unittest for py3k
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 3f7862c..6164eb9 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -5,7 +5,7 @@ from alembic.migration import MigrationContext from alembic.operations import Operations from alembic.script import ScriptDirectory import unittest -from mock import Mock, call +from . import Mock, call from . import eq_, capture_db, assert_raises_message |