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.
This commit is contained in:
Jasper St. Pierre 2013-03-06 20:32:14 -05:00
parent 717e933e72
commit 155f599b20

View File

@ -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);