rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=19d55db8c812fc073a4f88e197ee8a8e1515aaef
commit 19d55db8c812fc073a4f88e197ee8a8e1515aaef Author: Andrii Kroitor <[email protected]> Date: Tue Oct 13 15:46:12 2015 +0300 fix UTC build --- tests/test_image_editor/image_editor_window_add.c | 4 ++-- tests/test_project_manager/pm_project_save.c | 5 +++-- tests/test_ui_workspace/test_ui_workspace.h | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/test_image_editor/image_editor_window_add.c b/tests/test_image_editor/image_editor_window_add.c index 11dad22..5ecbbdb 100644 --- a/tests/test_image_editor/image_editor_window_add.c +++ b/tests/test_image_editor/image_editor_window_add.c @@ -104,7 +104,7 @@ EFLETE_TEST (image_editor_window_add_test_p2) Evas_Object *images; ui_main_window_add(); - Project *project = setup("image_editor_window_add_test_p2"); + //Project *project = setup("image_editor_window_add_test_p2"); images = image_editor_window_add(MULTIPLE); ck_assert_msg(images != NULL, @@ -112,7 +112,7 @@ EFLETE_TEST (image_editor_window_add_test_p2) evas_object_del(images); app_shutdown(); - teardown("./image_editor_window_add_test_p2"); + //teardown("./image_editor_window_add_test_p2"); elm_shutdown(); } END_TEST diff --git a/tests/test_project_manager/pm_project_save.c b/tests/test_project_manager/pm_project_save.c index 68cda70..652b150 100644 --- a/tests/test_project_manager/pm_project_save.c +++ b/tests/test_project_manager/pm_project_save.c @@ -19,6 +19,7 @@ #include "test_project_manager.h" #include "test_common.h" +#include "editor.h" /** * @addtogroup project_manager_test @@ -75,8 +76,8 @@ EFLETE_TEST (pm_project_save_test_p) { EINA_INLIST_FOREACH(style->parts, part) { - edje_edit_state_min_w_set(style->obj, part->name, - "default", 0.0, 10); + editor_state_min_w_set(style->obj, NULL, false, + part->name, "default", 0.0, 10); } } } diff --git a/tests/test_ui_workspace/test_ui_workspace.h b/tests/test_ui_workspace/test_ui_workspace.h index a21f506..5edbe9f 100644 --- a/tests/test_ui_workspace/test_ui_workspace.h +++ b/tests/test_ui_workspace/test_ui_workspace.h @@ -18,7 +18,7 @@ */ #include "eflete.h" -#include "ui_workspace.h" +#include "workspace.h" #include "main_window.h" #include "utc_common.h" --
