Fix broken test case.
authorA. Walton <awalton@gnome.org>
Wed, 11 Jun 2008 20:02:31 +0000 (20:02 +0000)
committerAndrew Walton <awalton@src.gnome.org>
Wed, 11 Jun 2008 20:02:31 +0000 (20:02 +0000)
2008-06-11  A. Walton  <awalton@gnome.org>

* tests/g-file.c (test_g_file_new_null):
Fix broken test case.

svn path=/trunk/; revision=7016

gio/ChangeLog
gio/tests/g-file.c

index 3e51e90..56d5931 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-11  A. Walton  <awalton@gnome.org>
+
+       * tests/g-file.c (test_g_file_new_null):
+       Fix broken test case.
+
 2008-06-11  Matthias Clasen <mclasen@redhat.com>
 
        * pltcheck.sh: We use g_clear_error now.
index 4becc1d..09b7ea1 100644 (file)
@@ -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);
     }