summaryrefslogtreecommitdiff
path: root/spec/unit/puppet
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppetlabs.com>2013-10-29 12:01:39 -0700
committerJosh Cooper <josh@puppetlabs.com>2013-10-29 12:01:39 -0700
commitae4f52e9e5db1a97ad77b159f11fdbd7ddbad3dd (patch)
treefb9c51c23a3eda8caff8cc3580b5ca45e774a870 /spec/unit/puppet
parentd809a9ef417f64797bb04fd70bc6bc900c2534ee (diff)
parent57a5c0b3e36e1c01016865c264ca3642f64b5034 (diff)
Merge branch 'fix-pick-error-typo'
* fix-pick-error-typo: (Main) fix typo in pick error message Closes GH-197
Diffstat (limited to 'spec/unit/puppet')
-rwxr-xr-x[-rw-r--r--]spec/unit/puppet/parser/functions/pick_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/puppet/parser/functions/pick_spec.rb b/spec/unit/puppet/parser/functions/pick_spec.rb
index d2b275f..f53fa80 100644..100755
--- a/spec/unit/puppet/parser/functions/pick_spec.rb
+++ b/spec/unit/puppet/parser/functions/pick_spec.rb
@@ -29,6 +29,6 @@ describe "the pick function" do
end
it 'should error if no values are passed' do
- expect { scope.function_pick([]) }.to( raise_error(Puppet::ParseError, "pick(): must receive at last one non empty value"))
+ expect { scope.function_pick([]) }.to( raise_error(Puppet::ParseError, "pick(): must receive at least one non empty value"))
end
end