Skip to content

Commit

Permalink
fix interpolation of #{system} in test output
Browse files Browse the repository at this point in the history
  • Loading branch information
3flex committed Oct 30, 2013
1 parent feb5d6e commit 1020ff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/classes/ntp_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
it { should include_class('ntp::config') }
it { should include_class('ntp::service') }

describe 'ntp::config on #{system}' do
describe "ntp::config on #{system}" do
it { should contain_file('/etc/ntp.conf').with_owner('0') }
it { should contain_file('/etc/ntp.conf').with_group('0') }
it { should contain_file('/etc/ntp.conf').with_mode('0644') }
Expand Down Expand Up @@ -96,7 +96,7 @@
end
end

describe 'ntp::install on #{system}' do
describe "ntp::install on #{system}" do
let(:params) {{ :package_ensure => 'present', :package_name => ['ntp'], }}

it { should contain_package('ntp').with(
Expand Down

0 comments on commit 1020ff8

Please sign in to comment.