Skip to content

Commit eb02ba2

Browse files
author
Ashley Penney
committed
Merge pull request #111 from 3flex/fix-interpolation-in-test-output
fix interpolation of #{system} in test output
2 parents feb5d6e + 1020ff8 commit eb02ba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/classes/ntp_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
it { should include_class('ntp::config') }
1414
it { should include_class('ntp::service') }
1515

16-
describe 'ntp::config on #{system}' do
16+
describe "ntp::config on #{system}" do
1717
it { should contain_file('/etc/ntp.conf').with_owner('0') }
1818
it { should contain_file('/etc/ntp.conf').with_group('0') }
1919
it { should contain_file('/etc/ntp.conf').with_mode('0644') }
@@ -96,7 +96,7 @@
9696
end
9797
end
9898

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

102102
it { should contain_package('ntp').with(

0 commit comments

Comments
 (0)