From: A. Walton Date: Wed, 11 Jun 2008 20:02:31 +0000 (+0000) Subject: Fix broken test case. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=52a03b97c65c1db74deb03ea6cc1c9352cf11d9d;p=dana%2Fcg-glib.git Fix broken test case. 2008-06-11 A. Walton * tests/g-file.c (test_g_file_new_null): Fix broken test case. svn path=/trunk/; revision=7016 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 3e51e90e..56d5931c 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-06-11 A. Walton + + * tests/g-file.c (test_g_file_new_null): + Fix broken test case. + 2008-06-11 Matthias Clasen * pltcheck.sh: We use g_clear_error now. diff --git a/gio/tests/g-file.c b/gio/tests/g-file.c index 4becc1d1..09b7ea1e 100644 --- a/gio/tests/g-file.c +++ b/gio/tests/g-file.c @@ -69,7 +69,7 @@ test_g_file_new_null (void) i = 0; while (uris[i]) { - file = g_file_new_for_uri (paths[i++]); + file = g_file_new_for_uri (uris[i++]); g_assert (file != NULL); g_object_unref(file); }