Commit 9f13dc2b authored by Nailia Iskhakova's avatar Nailia Iskhakova Committed by Dan Davison

Skip filling in cadence start date if disabled in specs

parent 9c647a13
...@@ -33,8 +33,8 @@ module QA ...@@ -33,8 +33,8 @@ module QA
QA::EE::Page::Group::Iteration::Cadence::New.perform do |new| QA::EE::Page::Group::Iteration::Cadence::New.perform do |new|
new.fill_title(@title) new.fill_title(@title)
new.uncheck_automatic_scheduling new.uncheck_automatic_scheduling unless @automatic
new.fill_start_date(@start_date) new.fill_start_date(@start_date) if @automatic
new.click_create_iteration_cadence_button new.click_create_iteration_cadence_button
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment