diff --git a/tests/applications/software/browse_applications.pm b/tests/applications/software/browse_applications.pm index 6a9628f6..d06f1043 100644 --- a/tests/applications/software/browse_applications.pm +++ b/tests/applications/software/browse_applications.pm @@ -19,7 +19,7 @@ sub run { # Open the Create category. assert_and_click("software_category_create"); assert_and_click("software_application_amarok"); - check_application_details("amarok"); + check_application_information("amarok"); # Come back to the main screen while (! check_screen("gnome_search_button")) { assert_and_click("gnome_back_button"); @@ -28,7 +28,7 @@ sub run { # Open the Learn category. assert_and_click("software_category_learn"); assert_and_click("software_application_octave"); - check_application_details("octave"); + check_application_information("octave"); # Come back to the main screen while (! check_screen("gnome_search_button")) { assert_and_click("gnome_back_button"); @@ -37,7 +37,7 @@ sub run { # Open the Play category. assert_and_click("software_category_play"); assert_and_click("software_application_chess"); - check_application_details("chess"); + check_application_information("chess"); } sub test_flags { diff --git a/tests/applications/software/search_applications.pm b/tests/applications/software/search_applications.pm index be83b9ef..32dfae8e 100644 --- a/tests/applications/software/search_applications.pm +++ b/tests/applications/software/search_applications.pm @@ -15,19 +15,19 @@ sub run { # Find KTurtle and check for its details, # use a keyword. find_application("educational"); - check_application_details("educational"); + check_application_information("educational"); assert_and_click("gnome_back_button"); # Find IDLE3 and check for its details, # use a name. find_application("idle3"); - check_application_details("idle3"); + check_application_information("idle3"); assert_and_click("gnome_back_button"); # Find Midori and check for its details # use a category. find_application("browser"); - check_application_details("browser"); + check_application_information("browser"); assert_and_click("gnome_back_button"); }