From 52a03b97c65c1db74deb03ea6cc1c9352cf11d9d Mon Sep 17 00:00:00 2001 From: "A. Walton" Date: Wed, 11 Jun 2008 20:02:31 +0000 Subject: [PATCH] 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 --- gio/ChangeLog | 5 +++++ gio/tests/g-file.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gio/ChangeLog b/gio/ChangeLog index 3e51e90eb..56d5931c4 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 4becc1d1d..09b7ea1eb 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); }