diff options
author | Josh Cooper <josh@puppetlabs.com> | 2013-10-29 12:01:39 -0700 |
---|---|---|
committer | Josh Cooper <josh@puppetlabs.com> | 2013-10-29 12:01:39 -0700 |
commit | ae4f52e9e5db1a97ad77b159f11fdbd7ddbad3dd (patch) | |
tree | fb9c51c23a3eda8caff8cc3580b5ca45e774a870 /spec/unit | |
parent | d809a9ef417f64797bb04fd70bc6bc900c2534ee (diff) | |
parent | 57a5c0b3e36e1c01016865c264ca3642f64b5034 (diff) | |
download | puppet-stdlib-ae4f52e9e5db1a97ad77b159f11fdbd7ddbad3dd.tar.gz puppet-stdlib-ae4f52e9e5db1a97ad77b159f11fdbd7ddbad3dd.tar.bz2 |
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')
-rwxr-xr-x[-rw-r--r--] | spec/unit/puppet/parser/functions/pick_spec.rb | 2 |
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 |