Commit 011292f1 authored by Valery Sizov's avatar Valery Sizov

Merge branch 'fix-ensure_pipeline' into 'ce_upstream'

Fix test for 'pages are deployed'

Fixing this: https://gitlab.com/gitlab-org/gitlab-ee/builds/3686311

The reason is that `Project#ensure_pipeline` switched the order of arguments, but this test is EE-only therefore this change was missed.

See merge request !711
parents 98d25a45 47f6d81c
......@@ -27,7 +27,7 @@ class Spinach::Features::ProjectPages < Spinach::FeatureSteps
end
step 'pages are deployed' do
pipeline = @project.ensure_pipeline(@project.commit('HEAD').sha, 'HEAD')
pipeline = @project.ensure_pipeline('HEAD', @project.commit('HEAD').sha)
build = build(:ci_build,
project: @project,
pipeline: pipeline,
......
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