From 5615f2737cb034d3d8de70e1e50f1ba8ca78c34d Mon Sep 17 00:00:00 2001
From: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Date: Fri, 23 Oct 2015 18:21:43 +0200
Subject: [PATCH] Fix rubocop issues

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
---
 app/helpers/ci_status_helper.rb          |  6 ++++--
 features/steps/project/merge_requests.rb | 10 +++++-----
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index ceafe5e8c91..ed88df5dd86 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -44,8 +44,10 @@ module CiStatusHelper
   end
 
   def render_ci_status(ci_commit)
-    link_to ci_status_path(ci_commit), class: "c#{ci_status_color(ci_commit)}",
-      title: "Build status: #{ci_commit.status}", data: {toggle: 'tooltip', placement: 'left'} do
+    link_to ci_status_path(ci_commit),
+      class: "c#{ci_status_color(ci_commit)}",
+      title: "Build status: #{ci_commit.status}",
+      data: { toggle: 'tooltip', placement: 'left' } do
       ci_status_icon(ci_commit)
     end
   end
diff --git a/features/steps/project/merge_requests.rb b/features/steps/project/merge_requests.rb
index da34ed758c3..92ec14d0d76 100644
--- a/features/steps/project/merge_requests.rb
+++ b/features/steps/project/merge_requests.rb
@@ -345,11 +345,11 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
     create :ci_build, commit: ci_commit
   end
 
-   step 'I should see merge request "Bug NS-05" with CI status' do
-     page.within ".mr-list" do
-       expect(page).to have_link "Build status: pending"
-     end
-   end
+  step 'I should see merge request "Bug NS-05" with CI status' do
+    page.within ".mr-list" do
+      expect(page).to have_link "Build status: pending"
+    end
+  end
 
   def merge_request
     @merge_request ||= MergeRequest.find_by!(title: "Bug NS-05")
-- 
2.30.9