diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-04-02 07:59:55 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-04-02 09:09:11 -0400 |
commit | c2318a18f91ee098efd8239ae6d9ec0bd3826423 (patch) | |
tree | df8c097b24d655fcde6ab4ac8d48885edbb5c8c9 /tests | |
parent | c173c0beb4e0f664faf616bd6475b6c5c1aa50fb (diff) | |
download | glib-c2318a18f91ee098efd8239ae6d9ec0bd3826423.tar.gz |
Dispose test object
While not very important, it means one less untested function
in the coverage report.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/refcount/objects2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/refcount/objects2.c b/tests/refcount/objects2.c index 66a076bbc..b50bcc878 100644 --- a/tests/refcount/objects2.c +++ b/tests/refcount/objects2.c @@ -111,6 +111,8 @@ main (int argc, char **argv) my_test_do_refcount (test); } + g_object_unref (test); + g_print ("\n"); return 0; |