aboutsummaryrefslogtreecommitdiff
path: root/tests/test-interests-client.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-20 13:16:14 -0500
committerTed Gould <ted@canonical.com>2009-04-20 13:16:14 -0500
commitc5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9 (patch)
treee7c3c4804a00a503831fc3574bc50d3584f1fd50 /tests/test-interests-client.c
parent76d5d0d2ad09b22fd49ca49761a12554a1d6383c (diff)
downloadlibayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.tar.gz
libayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.tar.bz2
libayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.zip
Expanding range of interest test and not checking to see if we got none, we shouldn't get it.
Diffstat (limited to 'tests/test-interests-client.c')
-rw-r--r--tests/test-interests-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-interests-client.c b/tests/test-interests-client.c
index 0fe8587..bde3b26 100644
--- a/tests/test-interests-client.c
+++ b/tests/test-interests-client.c
@@ -12,7 +12,7 @@ static gboolean
check_interests (void)
{
guint i;
- for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) {
+ for (i = INDICATE_INTEREST_NONE + 1; i < INDICATE_INTEREST_LAST; i++) {
if (!interests[i]) {
return FALSE;
}
@@ -54,7 +54,7 @@ main (int argc, char * argv)
IndicateServer * server = indicate_server_ref_default();
g_signal_connect(G_OBJECT(server), INDICATE_SERVER_SIGNAL_INTEREST_ADDED, G_CALLBACK(interest_added), NULL);
- g_timeout_add_seconds(10, done_timeout_cb, indicator);
+ g_timeout_add_seconds(2, done_timeout_cb, indicator);
mainloop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(mainloop);