Skip to content

Commit

Permalink
rubocop: fix Style/MultilineHashBraceLayout
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed May 22, 2016
1 parent 431ea94 commit b91a5d3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions spec/classes/nodejs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1061,8 +1061,9 @@

context 'when running on Windows' do
let :facts do
{ osfamily: 'Windows',
operatingsystem: 'Windows',
{
osfamily: 'Windows',
operatingsystem: 'Windows'
}
end

Expand Down Expand Up @@ -1162,9 +1163,10 @@

context 'when running on Amazon Linux 2014.09' do
let :facts do
{ osfamily: 'Linux',
{
osfamily: 'Linux',
operatingsystem: 'Amazon',
operatingsystemrelease: '2014.09',
operatingsystemrelease: '2014.09'
}
end

Expand Down Expand Up @@ -1426,9 +1428,10 @@
end
context 'when running on Amazon Linux 2015.03' do
let :facts do
{ osfamily: 'RedHat',
{
osfamily: 'RedHat',
operatingsystem: 'Amazon',
operatingsystemrelease: '2015.03',
operatingsystemrelease: '2015.03'
}
end

Expand Down

0 comments on commit b91a5d3

Please sign in to comment.