diff options
author | Derek McEachern <derek@derekm.org> | 2016-03-24 14:23:05 -0500 |
---|---|---|
committer | Derek McEachern <derek@derekm.org> | 2016-03-24 14:23:05 -0500 |
commit | eca43f41cd6718023871ba21ae93fe0f7657528f (patch) | |
tree | 8eaad07b3e15665783b5b8c2f8b8f6f4f1b03b4d | |
parent | db2a321434768b6b97e8c1101f6465e43c774c6d (diff) |
Fixed typo 'absense' to 'absence'
-rwxr-xr-x | spec/unit/puppet/provider/file_line/ruby_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/puppet/provider/file_line/ruby_spec.rb b/spec/unit/puppet/provider/file_line/ruby_spec.rb index 23e649c..fdeaf1a 100755 --- a/spec/unit/puppet/provider/file_line/ruby_spec.rb +++ b/spec/unit/puppet/provider/file_line/ruby_spec.rb @@ -398,7 +398,7 @@ describe provider_class do 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', @@ -416,7 +416,7 @@ describe provider_class do 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', |