diff options
Diffstat (limited to 'gio/tests/autoptr.c')
-rw-r--r-- | gio/tests/autoptr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/tests/autoptr.c b/gio/tests/autoptr.c index 9ff1428ea..55a1c91fb 100644 --- a/gio/tests/autoptr.c +++ b/gio/tests/autoptr.c @@ -8,7 +8,7 @@ test_autoptr (void) g_autofree gchar *path = g_file_get_path (p); g_autofree gchar *istr = g_inet_address_to_string (a); - g_assert_cmpstr (path, ==, "/blah"); + g_assert_cmpstr (path, ==, G_DIR_SEPARATOR_S "blah"); g_assert_cmpstr (istr, ==, "127.0.0.1"); } |