Skip to content

Commit bc863e4

Browse files
committed
make it work on ruby 1.8.7
1 parent 4ab62d3 commit bc863e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

spec/classes/create_ini_settings_test_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
:section => 'section1',
88
:setting => 'setting1',
99
:value => 'val1',
10-
:path => '/tmp/foo.ini',
10+
:path => '/tmp/foo.ini'
1111
)}
1212
it { should contain_ini_setting('[section2] setting2').with(
1313
:ensure => 'present',
1414
:section => 'section2',
1515
:setting => 'setting2',
1616
:value => 'val2',
17-
:path => '/tmp/foo.ini',
17+
:path => '/tmp/foo.ini'
1818
)}
1919
it { should contain_ini_setting('[section2] setting3').with(
2020
:ensure => 'absent',
2121
:section => 'section2',
2222
:setting => 'setting3',
23-
:path => '/tmp/foo.ini',
23+
:path => '/tmp/foo.ini'
2424
)}
2525
end

0 commit comments

Comments
 (0)