aboutsummaryrefslogtreecommitdiff
path: root/tests/test-interests-client.c
diff options
context:
space:
mode:
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);