[Refactoring] Removed trailing whitespaces.
[framework/uifw/elementary.git] / TC / elm_ts / controlbar / utc_UIFW_elm_controlbar_tab_item_insert_before_func.c
index 089efd3..d799efc 100644 (file)
@@ -56,8 +56,8 @@ 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);
 
        view = elm_layout_add(controlbar);
@@ -77,7 +77,7 @@ static void cleanup(void)
                evas_object_del(view);
                view = NULL;
        }
-       
+
        elm_shutdown();
        tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
 }
@@ -91,7 +91,7 @@ static void utc_UIFW_elm_controlbar_tab_item_insert_before_func_01(void)
        Elm_Controlbar_Item *item2 = NULL;
        item = elm_controlbar_tab_item_append(controlbar, CONTROLBAR_SYSTEM_ICON_SONGS, "Songs", view);
        item2 = elm_controlbar_tab_item_insert_before(controlbar, item, CONTROLBAR_SYSTEM_ICON_SONGS, "Songs", view);
-       
+
        if (!item2) {
                tet_infoline("elm_controlbar_tab_item_insert_before() failed in positive test case");
                tet_result(TET_FAIL);
@@ -109,7 +109,7 @@ static void utc_UIFW_elm_controlbar_tab_item_insert_before_func_02(void)
        Elm_Controlbar_Item *item2 = NULL;
        item = elm_controlbar_tab_item_append(controlbar, CONTROLBAR_SYSTEM_ICON_SONGS, "Songs", view);
        item2 = elm_controlbar_tab_item_insert_before(controlbar, NULL, CONTROLBAR_SYSTEM_ICON_SONGS, "Songs", view);
-       
+
        if (item2) {
                tet_infoline("elm_controlbar_tab_item_insert_before() failed in negative test case");
                tet_result(TET_FAIL);