tests: Cosmetics

Our test setups aready enforce GSETTINGS_BACKEND=memory, don't set
it again in code.
This commit is contained in:
Matthias Clasen
2024-10-21 12:31:39 -04:00
parent acd00ceb4d
commit 84779ccdbc

View File

@@ -73,7 +73,7 @@ function_exists (const char *function_name)
if (g_module_symbol (module, function_name, &func) && func)
return TRUE;
for (i = 0; i < G_N_ELEMENTS(exceptions); i++)
for (i = 0; i < G_N_ELEMENTS (exceptions); i++)
{
if (g_str_equal (function_name, exceptions[i].expected))
{
@@ -321,9 +321,6 @@ main (int argc, char **argv)
guint n_types = 0, i;
int result;
/* These must be set before before gtk_test_init */
g_setenv ("GSETTINGS_BACKEND", "memory", TRUE);
/* initialize test program */
gtk_test_init (&argc, &argv);
gtk_test_register_all_types ();