diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-06 14:46:09 +0000 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-06 15:17:48 +0000 |
commit | 9d1b39fa6a02985a613604826997f0d7b969a40d (patch) | |
tree | 7ea1aae3aeb0f3084b082f4cc1ca85b31fc9ff16 /tests/test-indicator-ng.c | |
parent | b1f280aa8eb47f039398d604fe8fd126aae86fa4 (diff) | |
download | libayatana-indicator-9d1b39fa6a02985a613604826997f0d7b969a40d.tar.gz libayatana-indicator-9d1b39fa6a02985a613604826997f0d7b969a40d.tar.bz2 libayatana-indicator-9d1b39fa6a02985a613604826997f0d7b969a40d.zip |
Fork libayatana-indicator from Ubuntu's libindicator shared library.
Diffstat (limited to 'tests/test-indicator-ng.c')
-rw-r--r-- | tests/test-indicator-ng.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test-indicator-ng.c b/tests/test-indicator-ng.c index 296e00b..4e38c6e 100644 --- a/tests/test-indicator-ng.c +++ b/tests/test-indicator-ng.c @@ -36,7 +36,7 @@ test_non_existing (void) IndicatorNg *indicator; GError *error = NULL; - indicator = indicator_ng_new (SRCDIR "/com.canonical.does.not.exist.indicator", &error); + indicator = indicator_ng_new (SRCDIR "/org.ayatana.does.not.exist.indicator", &error); g_assert (indicator == NULL); g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT); @@ -50,11 +50,11 @@ test_instantiation (void) GError *error = NULL; GMainLoop *loop; - indicator = indicator_ng_new (SRCDIR "/com.canonical.indicator.no-such-service", &error); + indicator = indicator_ng_new (SRCDIR "/org.ayatana.indicator.no-such-service", &error); g_assert (indicator); g_assert (error == NULL); - g_assert_cmpstr (indicator_ng_get_service_file (indicator), ==, SRCDIR "/com.canonical.indicator.no-such-service"); + g_assert_cmpstr (indicator_ng_get_service_file (indicator), ==, SRCDIR "/org.ayatana.indicator.no-such-service"); g_assert_cmpstr (indicator_ng_get_profile (indicator), ==, "desktop"); { @@ -65,7 +65,7 @@ test_instantiation (void) "profile", &profile, NULL); - g_assert_cmpstr (service_file, ==, SRCDIR "/com.canonical.indicator.no-such-service"); + g_assert_cmpstr (service_file, ==, SRCDIR "/org.ayatana.indicator.no-such-service"); g_assert_cmpstr (profile, ==, "desktop"); g_free (service_file); @@ -89,7 +89,7 @@ test_instantiation_with_profile (void) IndicatorNg *indicator; GError *error = NULL; - indicator = indicator_ng_new_for_profile (SRCDIR "/com.canonical.indicator.test", "greeter", &error); + indicator = indicator_ng_new_for_profile (SRCDIR "/org.ayatana.indicator.test", "greeter", &error); g_assert (indicator); g_assert (error == NULL); @@ -133,7 +133,7 @@ test_menu (void) GList *entries; IndicatorObjectEntry *entry; - indicator = indicator_ng_new (SRCDIR "/com.canonical.indicator.test", &error); + indicator = indicator_ng_new (SRCDIR "/org.ayatana.indicator.test", &error); g_assert (indicator); g_assert (error == NULL); |