From b61fd3e5f489ac88cd693cfae7dd4d905fbf9d3f Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 2 Jan 2007 23:06:27 +0000 Subject: [PATCH] * check_text-utils.c: - fix compilation pmo-trunk-r583 --- tests/check_text-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check_text-utils.c b/tests/check_text-utils.c index 3fb4568..5b1938a 100644 --- a/tests/check_text-utils.c +++ b/tests/check_text-utils.c @@ -60,7 +60,7 @@ START_TEST (test_display_address_regular) /* Tests 1, 2, 3, 4 */ for (i = 0; i != sizeof(tests)/sizeof(StringPair); ++i) { gchar *str = g_strdup (tests[i].original); - str = modest_text_utils_display_address (str); + str = modest_text_utils_get_display_address (str); fail_unless (str && strcmp(str, tests[i].expected) == 0, "modest_text_utils_display_address failed for '%s': " "expected '%s' but got '%s'", @@ -78,7 +78,7 @@ END_TEST START_TEST (test_display_address_invalid) { /* Test 1 */ - fail_unless (modest_text_utils_display_address (NULL) == NULL, + fail_unless (modest_text_utils_get_display_address (NULL) == NULL, "modest_text_utils_display_address(NULL) should be NULL"); } -- 1.7.9.5