summaryrefslogtreecommitdiff
path: root/spec/functions/validate_augeas_spec.rb
diff options
context:
space:
mode:
authorMark Jeffcoat <Mark.Jeffcoat@motive.com>2015-03-10 17:43:51 -0500
committerMark Jeffcoat <Mark.Jeffcoat@motive.com>2015-03-10 17:43:51 -0500
commit3fec51ac65725ee10710030953a6d6b206de931d (patch)
treec54ddf27e01c7ad13a870ebfdd1d9f20a9d71ef7 /spec/functions/validate_augeas_spec.rb
parent4dab70b305c4ab1c8c36356efa4bd205678c7c49 (diff)
Fix off-by-one error in validate_augeas_spec.rb that was causing rspec failure.
Diffstat (limited to 'spec/functions/validate_augeas_spec.rb')
-rwxr-xr-xspec/functions/validate_augeas_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/functions/validate_augeas_spec.rb b/spec/functions/validate_augeas_spec.rb
index c695ba2..99523ab 100755
--- a/spec/functions/validate_augeas_spec.rb
+++ b/spec/functions/validate_augeas_spec.rb
@@ -60,7 +60,7 @@ describe Puppet::Parser::Functions.function(:validate_augeas), :if => Puppet.fea
end
describe "Nicer Error Messages" do
- # The intent here is to make sure the function returns the 3rd argument
+ # The intent here is to make sure the function returns the 4th argument
# in the exception thrown
inputs = [
[ "root:x:0:0:root\n", 'Passwd.lns', [], 'Failed to validate passwd content' ],
@@ -69,7 +69,7 @@ describe Puppet::Parser::Functions.function(:validate_augeas), :if => Puppet.fea
inputs.each do |input|
it "validate_augeas(#{input.inspect}) should fail" do
- expect { subject.call input }.to raise_error /#{input[2]}/
+ expect { subject.call input }.to raise_error /#{input[3]}/
end
end
end