1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-25 21:29:32 +00:00

tests/dbus: Switch to g_test_init

gtk_test_init() runs gtk_init() which then breaks isolation.
This commit is contained in:
Guido Günther 2023-01-31 16:49:18 +01:00 committed by Evangelos Ribeiro Tzaras
parent e4bd4580e7
commit 4fb2115b9b

View file

@ -218,7 +218,7 @@ int
main (int argc,
char *argv[])
{
gtk_test_init (&argc, &argv, NULL);
g_test_init (&argc, &argv, NULL);
g_test_add ("/Calls/DBus/no_calls", DBusTestFixture, NULL,
fixture_setup, test_no_calls, fixture_teardown);