From 8ec8da0491ad89604700b3e29a227966f6d84ba1 Mon Sep 17 00:00:00 2001 From: Perl Tidy Date: Wed, 5 Dec 2018 15:38:52 -0500 Subject: no bug - reformat all the code using the new perltidy rules --- qa/t/test_target_milestones.t | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) (limited to 'qa/t/test_target_milestones.t') diff --git a/qa/t/test_target_milestones.t b/qa/t/test_target_milestones.t index 7558f0525..ef62dd726 100644 --- a/qa/t/test_target_milestones.t +++ b/qa/t/test_target_milestones.t @@ -20,7 +20,7 @@ my $test_bug_1 = $config->{test_bug_1}; # Enable target milestones. log_in($sel, $config, 'admin'); -set_parameters($sel, { "Bug Fields" => {"usetargetmilestone-on" => undef} }); +set_parameters($sel, {"Bug Fields" => {"usetargetmilestone-on" => undef}}); # Create a new milestone to the 'TestProduct' product. @@ -32,7 +32,7 @@ $sel->click_ok("link=Add"); $sel->wait_for_page_to_load(WAIT_TIME); $sel->title_is("Add Milestone to Product 'TestProduct'"); $sel->type_ok("milestone", "TM1"); -$sel->type_ok("sortkey", "10"); +$sel->type_ok("sortkey", "10"); $sel->click_ok("create"); $sel->wait_for_page_to_load(WAIT_TIME); $sel->title_is("Milestone Created"); @@ -51,7 +51,7 @@ $sel->is_text_present_ok("Changes submitted for bug $test_bug_1"); open_advanced_search_page($sel); $sel->is_text_present_ok("Target Milestone:"); $sel->remove_all_selections_ok("product"); -$sel->add_selection_ok("product", "label=TestProduct"); +$sel->add_selection_ok("product", "label=TestProduct"); $sel->add_selection_ok("target_milestone", "label=TM1"); $sel->click_ok("Search"); $sel->wait_for_page_to_load_ok(WAIT_TIME); @@ -62,16 +62,22 @@ $sel->click_ok("remember"); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_is("Search created"); my $text = trim($sel->get_text("message")); -ok($text =~ /OK, you have a new search named selenium_m0./, "New search named selenium_m0 has been created"); +ok( + $text =~ /OK, you have a new search named selenium_m0./, + "New search named selenium_m0 has been created" +); # Turn off milestones and check that the milestone field no longer appears in bugs. -set_parameters($sel, { "Bug Fields" => {"usetargetmilestone-off" => undef} }); +set_parameters($sel, {"Bug Fields" => {"usetargetmilestone-off" => undef}}); $sel->click_ok('//*[@class="link-search"]//a'); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_is("Search for bugs"); -ok(!$sel->is_text_present("Target Milestone:"), "The target milestone field is no longer displayed"); +ok( + !$sel->is_text_present("Target Milestone:"), + "The target milestone field is no longer displayed" +); go_to_bug($sel, $test_bug_1); ok(!$sel->is_element_present('//label[@for="target_milestone"]')); @@ -86,23 +92,29 @@ $sel->click_ok("link=Forget Search 'selenium_m0'"); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_is("Search is gone"); $text = trim($sel->get_text("message")); -ok($text =~ /OK, the selenium_m0 search is gone./, "The selenium_m0 search is gone"); +ok($text =~ /OK, the selenium_m0 search is gone./, + "The selenium_m0 search is gone"); # Re-enable the usetargetmilestone parameter and delete the created # milestone from the Testproduct product. -set_parameters($sel, { "Bug Fields" => {"usetargetmilestone-on" => undef} }); +set_parameters($sel, {"Bug Fields" => {"usetargetmilestone-on" => undef}}); edit_product($sel, "TestProduct"); $sel->click_ok("link=Edit milestones:"); $sel->wait_for_page_to_load(WAIT_TIME); $sel->title_is("Select milestone of product 'TestProduct'"); -$sel->click_ok('//a[@href="editmilestones.cgi?action=del&product=TestProduct&milestone=TM1"]', - undef, "Deleting the TM1 milestone"); +$sel->click_ok( + '//a[@href="editmilestones.cgi?action=del&product=TestProduct&milestone=TM1"]', + undef, "Deleting the TM1 milestone" +); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_is("Delete Milestone of Product 'TestProduct'"); $text = trim($sel->get_body_text()); -ok($text =~ /There is 1 bug entered for this milestone/, "Warning displayed about 1 bug targetted to TM1"); +ok( + $text =~ /There is 1 bug entered for this milestone/, + "Warning displayed about 1 bug targetted to TM1" +); $sel->click_ok("delete"); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_is("Milestone Deleted"); -- cgit v1.2.3-24-g4f1b