diff options
author | Ted Gould <ted@canonical.com> | 2009-04-20 13:16:14 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-20 13:16:14 -0500 |
commit | c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9 (patch) | |
tree | e7c3c4804a00a503831fc3574bc50d3584f1fd50 /tests/test-interests-server.c | |
parent | 76d5d0d2ad09b22fd49ca49761a12554a1d6383c (diff) | |
download | libayatana-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-server.c')
-rw-r--r-- | tests/test-interests-server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-interests-server.c b/tests/test-interests-server.c index 82cab3c..e1433d8 100644 --- a/tests/test-interests-server.c +++ b/tests/test-interests-server.c @@ -10,8 +10,8 @@ server_added (IndicateListener * listener, IndicateListenerServer * server, gcha { g_debug("Indicator Server Added: %s %s", INDICATE_LISTENER_SERVER_DBUS_NAME(server), type); - guint i; - for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) { + gint i; + for (i = INDICATE_INTEREST_NONE - 2; i < INDICATE_INTEREST_LAST + 2; i++) { g_debug("Indicating Interests: %d", i); indicate_listener_server_show_interest(listener, server, i); } |