diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-02-06 13:39:19 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-02-06 13:39:26 -0300 |
commit | 63acf3c1965d8a8b4b1a9acef7f93f19a8f7cbc2 (patch) | |
tree | 8c6a11c095f00ce448677639afe87738676b4e37 /service/test/unit | |
parent | a06daade9eb3c7369e73f761297b0e4d83b1337b (diff) |
for #167, moving contacts suggestions search logic to a separate module
Diffstat (limited to 'service/test/unit')
-rw-r--r-- | service/test/unit/adapter/test_contacts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/test/unit/adapter/test_contacts.py b/service/test/unit/adapter/test_contacts.py index ee9bf618..3510faf5 100644 --- a/service/test/unit/adapter/test_contacts.py +++ b/service/test/unit/adapter/test_contacts.py @@ -15,8 +15,8 @@ # along with Pixelated. If not, see <http://www.gnu.org/licenses/>. import unittest -from pixelated.adapter.contacts import address_duplication_filter -from pixelated.adapter.contacts import extract_mail_address +from pixelated.adapter.search.contacts import address_duplication_filter +from pixelated.adapter.search.contacts import extract_mail_address class TestContacts(unittest.TestCase): |