diff options
author | Ted Gould <ted@gould.cx> | 2010-02-06 09:41:25 -0800 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-02-06 09:41:25 -0800 |
commit | b9152c356c099d051109fcd03e68c745b34899ec (patch) | |
tree | 6251ff893fea85b19a520abd0412549e049b429f /tests | |
parent | 74c665741d480ab79105345ef9c700ddbf70804f (diff) | |
download | libayatana-appindicator-b9152c356c099d051109fcd03e68c745b34899ec.tar.gz libayatana-appindicator-b9152c356c099d051109fcd03e68c745b34899ec.tar.bz2 libayatana-appindicator-b9152c356c099d051109fcd03e68c745b34899ec.zip |
Changing to 100 instead of 1000
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-libappindicator-status-client.c | 2 | ||||
-rw-r--r-- | tests/test-libappindicator-status-server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-libappindicator-status-client.c b/tests/test-libappindicator-status-client.c index 2e02b8e..55d85a2 100644 --- a/tests/test-libappindicator-status-client.c +++ b/tests/test-libappindicator-status-client.c @@ -70,7 +70,7 @@ dbus_filter (DBusConnection * connection, DBusMessage * message, void * user_dat toggle_count++; - if (toggle_count == 1000) { + if (toggle_count == 100) { g_main_loop_quit(mainloop); } diff --git a/tests/test-libappindicator-status-server.c b/tests/test-libappindicator-status-server.c index 75b430e..c7a8ecd 100644 --- a/tests/test-libappindicator-status-server.c +++ b/tests/test-libappindicator-status-server.c @@ -43,7 +43,7 @@ toggle (gpointer userdata) toggle_count++; - if (toggle_count == 1000) { + if (toggle_count == 100) { g_main_loop_quit(mainloop); return FALSE; } |