summaryrefslogtreecommitdiff
path: root/tests/test-basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-basic.c')
-rw-r--r--tests/test-basic.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test-basic.c b/tests/test-basic.c
index 4599b08..a271a1e 100644
--- a/tests/test-basic.c
+++ b/tests/test-basic.c
@@ -33,10 +33,12 @@ int main() {
NULL, NULL);
notify_notification_set_timeout (n, 3000); //3 seconds
- if (!notify_notification_show_and_forget (n, NULL)) {
+ if (!notify_notification_show (n, NULL)) {
fprintf(stderr, "failed to send notification\n");
return 1;
}
+ g_object_unref(G_OBJECT(n));
+
return 0;
}