From 73f697d53bdec63e65bb95c328d69afef7c86e45 Mon Sep 17 00:00:00 2001 From: Annabel Dunstone Gray Date: Fri, 28 Oct 2016 11:14:04 -0500 Subject: Fix rubocop offenses --- spec/views/projects/commit/_commit_box.html.haml_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/views') diff --git a/spec/views/projects/commit/_commit_box.html.haml_spec.rb b/spec/views/projects/commit/_commit_box.html.haml_spec.rb index eaf5a0ee1bd..16bf0698c4b 100644 --- a/spec/views/projects/commit/_commit_box.html.haml_spec.rb +++ b/spec/views/projects/commit/_commit_box.html.haml_spec.rb @@ -17,8 +17,8 @@ describe 'projects/commit/_commit_box.html.haml' do end it 'shows the last pipeline that ran for the commit' do - first_pipeline = create(:ci_pipeline, project: project, sha: project.commit.id, status: 'success') - second_pipeline = create(:ci_pipeline, project: project, sha: project.commit.id, status: 'canceled') + create(:ci_pipeline, project: project, sha: project.commit.id, status: 'success') + create(:ci_pipeline, project: project, sha: project.commit.id, status: 'canceled') third_pipeline = create(:ci_pipeline, project: project, sha: project.commit.id, status: 'failed') render -- cgit v1.2.1