diff options
Diffstat (limited to 'tests/common/tracker-test-helpers.c')
-rw-r--r-- | tests/common/tracker-test-helpers.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/common/tracker-test-helpers.c b/tests/common/tracker-test-helpers.c index 65f7cf265..793d3a4ea 100644 --- a/tests/common/tracker-test-helpers.c +++ b/tests/common/tracker-test-helpers.c @@ -20,28 +20,6 @@ static gchar *nonutf8_str = NULL; -gboolean -tracker_test_helpers_cmpstr_equal (const gchar *obtained, - const gchar *expected) -{ - gboolean result; - - if (expected == obtained) { - return TRUE; - } - - if (expected && obtained) { - result = !g_utf8_collate (expected, obtained); - if (!result) { - g_warning ("Expected %s - obtained %s", expected, obtained); - } - return result; - } else { - g_warning ("\n Only one of the strings is NULL\n"); - return FALSE; - } -} - const gchar * tracker_test_helpers_get_nonutf8 (void) { |