diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-14 22:07:18 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-14 23:16:37 +0100 |
commit | 405a6969a0b2409d5f013e8d2845945b51146eb9 (patch) | |
tree | 367704fccc48a88d87eada791b6813f10b89fb0d /tests/test-service.cc | |
parent | c5211a8f81f6704558f4453c5eeb509f29672781 (diff) | |
download | ayatana-indicator-session-405a6969a0b2409d5f013e8d2845945b51146eb9.tar.gz ayatana-indicator-session-405a6969a0b2409d5f013e8d2845945b51146eb9.tar.bz2 ayatana-indicator-session-405a6969a0b2409d5f013e8d2845945b51146eb9.zip |
Fork from Ubuntu's indicator-session project.
Diffstat (limited to 'tests/test-service.cc')
-rw-r--r-- | tests/test-service.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test-service.cc b/tests/test-service.cc index 9ee7236..7dae887 100644 --- a/tests/test-service.cc +++ b/tests/test-service.cc @@ -152,11 +152,11 @@ class ServiceTest: public GTestDBusFixture any_item_changed = FALSE; timer = g_timer_new (); - mock_settings = g_settings_new ("com.canonical.indicator.session.backendmock"); + mock_settings = g_settings_new ("org.ayatana.indicator.session.backendmock"); mock_actions = indicator_session_actions_mock_new (); mock_users = indicator_session_users_mock_new (); mock_guest = indicator_session_guest_mock_new (); - indicator_settings = g_settings_new ("com.canonical.indicator.session"); + indicator_settings = g_settings_new ("org.ayatana.indicator.session"); // Start an IndicatorSessionService and wait for it to appear on the bus. // This way our calls to g_dbus_*_get() in the next paragraph won't activate @@ -165,7 +165,7 @@ class ServiceTest: public GTestDBusFixture // wait for the service to show up on the bus const guint watch_id = g_bus_watch_name_on_connection (conn, - "com.canonical.indicator.session", + "org.ayatana.indicator.session", G_BUS_NAME_WATCHER_FLAGS_NONE, on_name_appeared, // quits the loop NULL, this, NULL); @@ -177,11 +177,11 @@ class ServiceTest: public GTestDBusFixture // get the actions & menus that the service exported. action_group = g_dbus_action_group_get (conn, - "com.canonical.indicator.session", - "/com/canonical/indicator/session"); + "org.ayatana.indicator.session", + "/org/ayatana/indicator/session"); menu_model = g_dbus_menu_model_get (conn, - "com.canonical.indicator.session", - "/com/canonical/indicator/session/desktop"); + "org.ayatana.indicator.session", + "/org/ayatana/indicator/session/desktop"); // the actions are added asynchronously, so wait for the actions if (!g_action_group_has_action (G_ACTION_GROUP(action_group), "about")) wait_for_signal (action_group, "action-added"); |