From c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 20 Apr 2009 13:16:14 -0500 Subject: Expanding range of interest test and not checking to see if we got none, we shouldn't get it. --- tests/test-interests-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test-interests-client.c') 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); -- cgit v1.2.3