Commit 265c31b0 authored by Dan Davison's avatar Dan Davison

Merge branch 'qe-fix-iteration-spec' into 'master'

Skip filling in cadence start date if disabled in specs

See merge request gitlab-org/gitlab!75911
parents 59e5e1f7 9f13dc2b
......@@ -33,8 +33,8 @@ module QA
QA::EE::Page::Group::Iteration::Cadence::New.perform do |new|
new.fill_title(@title)
new.uncheck_automatic_scheduling
new.fill_start_date(@start_date)
new.uncheck_automatic_scheduling unless @automatic
new.fill_start_date(@start_date) if @automatic
new.click_create_iteration_cadence_button
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