[Refactoring] Removed trailing whitespaces.
[framework/uifw/elementary.git] / TC / elm_ts / controlbar / utc_UIFW_elm_controlbar_object_item_insert_before_func.c
index 097713b..24dc8bb 100644 (file)
@@ -56,7 +56,7 @@ static void startup(void)
        tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
        elm_init(0, NULL);
        main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
-       evas_object_show(main_win);     
+       evas_object_show(main_win);
 
        controlbar = elm_controlbar_add(main_win);
 
@@ -78,7 +78,7 @@ static void cleanup(void)
                evas_object_del(button);
                button = NULL;
        }
-       
+
        elm_shutdown();
        tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
 }
@@ -92,7 +92,7 @@ static void utc_UIFW_elm_controlbar_object_item_insert_before_func_01(void)
        Elm_Controlbar_Item *item2 = NULL;
        item = elm_controlbar_object_item_append(controlbar, button, 2);
        item2 = elm_controlbar_object_item_insert_before(controlbar, item, button, 3);
-       
+
        if (!item2) {
                tet_infoline("elm_controlbar_object_item_insert_before() failed in positive test case");
                tet_result(TET_FAIL);
@@ -110,7 +110,7 @@ static void utc_UIFW_elm_controlbar_object_item_insert_before_func_02(void)
        Elm_Controlbar_Item *item2 = NULL;
        item = elm_controlbar_object_item_append(controlbar, button, 2);
        item2 = elm_controlbar_object_item_insert_before(controlbar, NULL, button, 3);
-       
+
        if (item2) {
                tet_infoline("elm_controlbar_object_item_insert_before() failed in negative test case");
                tet_result(TET_FAIL);