diff --git a/src/tests/ecore_wl2/ecore_wl2_test_display.c b/src/tests/ecore_wl2/ecore_wl2_test_display.c index 2f77d2705f..dd0799c3fd 100644 --- a/src/tests/ecore_wl2/ecore_wl2_test_display.c +++ b/src/tests/ecore_wl2/ecore_wl2_test_display.c @@ -185,7 +185,12 @@ EFL_START_TEST(wl2_display_input_find_by_name) disp = _display_connect(); ck_assert(disp != NULL); - input = ecore_wl2_display_input_find_by_name(disp, "default"); + /* NB: Enlightenment uses "seat0" here, but Weston uses "default" */ + if (getenv("E_START")) + input = ecore_wl2_display_input_find_by_name(disp, "seat0"); + else + input = ecore_wl2_display_input_find_by_name(disp, "default"); + ck_assert(input != NULL); } EFL_END_TEST