diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-03 12:29:00 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-03 12:29:00 +0200 |
commit | 717fdd6d42f119dd1e0f457c40563cc35985fbae (patch) | |
tree | cdcb1a8167a809c8c203d50dcff65ef44d0eace2 /spec/features/security/project | |
parent | b2acebb4efdf8023f685cfd14489c49e56d126a7 (diff) | |
download | gitlab-ce-717fdd6d42f119dd1e0f457c40563cc35985fbae.tar.gz |
Rename Ci::Build commit to pipeline
Diffstat (limited to 'spec/features/security/project')
-rw-r--r-- | spec/features/security/project/public_access_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/security/project/public_access_spec.rb b/spec/features/security/project/public_access_spec.rb index 4def4f99bc0..4ce367c3c6d 100644 --- a/spec/features/security/project/public_access_spec.rb +++ b/spec/features/security/project/public_access_spec.rb @@ -143,7 +143,7 @@ describe "Public Project Access", feature: true do describe "GET /:project_path/builds/:id" do let(:commit) { create(:ci_commit, project: project) } - let(:build) { create(:ci_build, commit: commit) } + let(:build) { create(:ci_build, pipeline: commit) } subject { namespace_project_build_path(project.namespace, project, build.id) } context "when allowed for public" do |