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 3e51e90eb5aab543e31269e96d015a680083439b..56d5931c41b23e4043ae5d3e04541d1e1517cb45 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 4becc1d1d66fa3e5615659332bb8bdba6b73de20..09b7ea1eb1cc97c31bf064111827aa59237d4bda 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);
     }