diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-06-20 01:47:33 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-06-20 01:47:33 +0200 |
commit | 77807b4a6bbec59ea98c9f53557ac96239c6300e (patch) | |
tree | 651ed979fa0d830b0e4f96c79ca54cd8e4cb53a2 /tests | |
parent | cdc3ae9a91cbe7db1728bb0e83b1c3beee940310 (diff) | |
download | factory-boy-77807b4a6bbec59ea98c9f53557ac96239c6300e.tar factory-boy-77807b4a6bbec59ea98c9f53557ac96239c6300e.tar.gz |
Fix tests for sqlalchemy.
Also add them to travis.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_alchemy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_alchemy.py b/tests/test_alchemy.py index 39e94c8..cfbc835 100644 --- a/tests/test_alchemy.py +++ b/tests/test_alchemy.py @@ -31,7 +31,7 @@ except ImportError: sqlalchemy = None if sqlalchemy: - from factory import SQLAlchemyModelFactory + from factory.alchemy import SQLAlchemyModelFactory from .alchemyapp import models else: |