From 161d7b88fd114aced2c879a2b44640a7779dd36c Mon Sep 17 00:00:00 2001 From: Dan Webb Date: Tue, 27 Jun 2017 09:20:36 +0100 Subject: [PATCH] Fix rubocop --- test/integration/system_ruby/controls/installation.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/system_ruby/controls/installation.rb b/test/integration/system_ruby/controls/installation.rb index aea44549..31624304 100644 --- a/test/integration/system_ruby/controls/installation.rb +++ b/test/integration/system_ruby/controls/installation.rb @@ -2,7 +2,7 @@ control 'Installs rbenv' do title 'Should install rbenv' - desc "creates the rbenv profile" + desc 'creates the rbenv profile' describe file('/etc/profile.d/rbenv.sh') do it { should exist } it { should be_file } @@ -11,7 +11,7 @@ desc 'create the directory' describe file('/usr/local/rbenv') do it { should exist } - it { should be_directory} + it { should be_directory } end desc 'rbenv is a function'