From 155f599b206f67642970e0bc35b3ba5e1386b884 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 6 Mar 2013 20:32:14 -0500 Subject: [PATCH] tests/appinfo: Fix a typo The environment variable name is BLA, not BAR, so if BAR is set for some strange reason, the test fails. --- gio/tests/appinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/appinfo.c b/gio/tests/appinfo.c index 8c532127d..6507f4b94 100644 --- a/gio/tests/appinfo.c +++ b/gio/tests/appinfo.c @@ -328,7 +328,7 @@ test_environment (void) env = g_app_launch_context_get_environment (ctx); g_assert (g_environ_getenv (env, "FOO") == NULL); - g_assert (g_environ_getenv (env, "BAR") == NULL); + g_assert (g_environ_getenv (env, "BLA") == NULL); g_assert_cmpstr (g_environ_getenv (env, "PATH"), ==, path); g_strfreev (env);