aboutsummaryrefslogtreecommitdiff
path: root/tests/test-loader.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-03 21:33:08 -0600
committerTed Gould <ted@canonical.com>2009-11-03 21:33:08 -0600
commitbffbb2c3612b6cc73d7845c365b1dcb05907e010 (patch)
tree79112f6ae70e10060c802b70d31f1bbdc935ad66 /tests/test-loader.c
parent57642ed848ab8f6afd9e364b503633727c5ee288 (diff)
downloadlibayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.tar.gz
libayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.tar.bz2
libayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.zip
Switching to checking the entires list instead of individual functions.
Diffstat (limited to 'tests/test-loader.c')
-rw-r--r--tests/test-loader.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test-loader.c b/tests/test-loader.c
index 4b2b096..141ad78 100644
--- a/tests/test-loader.c
+++ b/tests/test-loader.c
@@ -9,9 +9,7 @@ test_loader_filename_dummy_simple_accessors (void)
IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/.libs/libdummy-indicator-simple.so");
g_assert(object != NULL);
- g_assert(indicator_object_get_label(object) != NULL);
- g_assert(indicator_object_get_menu(object) != NULL);
- g_assert(indicator_object_get_icon(object) != NULL);
+ g_assert(indicator_object_get_entries(object) != NULL);
g_object_unref(object);