Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spec/unit/puppet/provider/file_line/ruby_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
expect(File.read(@tmpfile)).to eql("foo1\nfoo2\n")
end

it 'should ignore the match if match_for_absense is not specified' do
it 'should ignore the match if match_for_absence is not specified' do
@resource = Puppet::Type::File_line.new(
{
:name => 'foo',
Expand All @@ -416,7 +416,7 @@
expect(File.read(@tmpfile)).to eql("foo1\nfoo\n")
end

it 'should ignore the match if match_for_absense is false' do
it 'should ignore the match if match_for_absence is false' do
@resource = Puppet::Type::File_line.new(
{
:name => 'foo',
Expand Down