Fix acceptance test for removed section

The 199 PR updated ini_setting to remove empty sections after the last
value is removed. This fixes the acceptance test.
This commit is contained in:
Hunter Haugen 2016-03-01 16:23:06 -08:00
parent af9de61afc
commit f77ab45542

View file

@ -134,7 +134,7 @@ describe 'ini_setting resource' do
it { should be_file }
its(:content) {
should match /four = five/
should match /\[one\]/
should_not match /\[one\]/
should_not match /two = three/
}
end