Skip to content

Commit

Permalink
fix(rubocop): add fixes using rubocop --safe-auto-correct
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Oct 12, 2019
1 parent 89b57a3 commit 93d3df6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/integration/default/controls/environ_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

control 'deepsea configuration environment' do
title 'should match desired lines'

Expand All @@ -7,6 +9,6 @@
it { should be_grouped_into 'root' }
its('mode') { should cmp '0640' }
its('content') { should include 'Your changes may be overwritten' }
#its('content') { should include 'export DEV_ENV=' }
# its('content') { should include 'export DEV_ENV=' }
end
end
3 changes: 2 additions & 1 deletion test/integration/default/controls/services_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

control 'salt-minion service' do
impact 0.5
title 'should be running and enabled'
Expand All @@ -6,5 +8,4 @@
it { should be_enabled }
it { should be_running }
end

end

0 comments on commit 93d3df6

Please sign in to comment.