aboutsummaryrefslogtreecommitdiffstats
path: root/tests/empathy-live-search-test.c
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-09 20:44:04 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:05 +0800
commit406dc1041ff2d0575e43bb0c320a072d29e4af79 (patch)
tree2d26b2a781a0c433b4444584c862c3b2f0b5ae72 /tests/empathy-live-search-test.c
parent740b695e21016ff7b568b069734b29e780b459e5 (diff)
downloadgsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar.gz
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar.bz2
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar.lz
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar.xz
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.tar.zst
gsoc2013-empathy-406dc1041ff2d0575e43bb0c320a072d29e4af79.zip
live-search: move from Empathy to tp-account-widgets
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'tests/empathy-live-search-test.c')
-rw-r--r--tests/empathy-live-search-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/empathy-live-search-test.c b/tests/empathy-live-search-test.c
index 10f0346f3..2fb3e48db 100644
--- a/tests/empathy-live-search-test.c
+++ b/tests/empathy-live-search-test.c
@@ -3,8 +3,8 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <tp-account-widgets/tpaw-live-search.h>
-#include "empathy-live-search.h"
#include "test-helper.h"
#define DEBUG_FLAG EMPATHY_DEBUG_TESTS
@@ -57,7 +57,7 @@ test_live_search (void)
gboolean match;
gboolean ok;
- match = empathy_live_search_match_string (tests[i].string, tests[i].prefix);
+ match = tpaw_live_search_match_string (tests[i].string, tests[i].prefix);
ok = (match == tests[i].should_match);
DEBUG ("'%s' - '%s' %s: %s", tests[i].string, tests[i].prefix,