summaryrefslogtreecommitdiff
path: root/service/test/unit/adapter/test_contacts.py
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2015-02-06 13:39:19 -0300
committerVictor Shyba <victor.shyba@gmail.com>2015-02-06 13:39:26 -0300
commit63acf3c1965d8a8b4b1a9acef7f93f19a8f7cbc2 (patch)
tree8c6a11c095f00ce448677639afe87738676b4e37 /service/test/unit/adapter/test_contacts.py
parenta06daade9eb3c7369e73f761297b0e4d83b1337b (diff)
for #167, moving contacts suggestions search logic to a separate module
Diffstat (limited to 'service/test/unit/adapter/test_contacts.py')
-rw-r--r--service/test/unit/adapter/test_contacts.py4
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):