diff options
author | Matthew Haughton <3flex@users.noreply.github.com> | 2013-10-29 14:21:03 -0400 |
---|---|---|
committer | Josh Cooper <josh@puppetlabs.com> | 2013-10-29 12:01:25 -0700 |
commit | 57a5c0b3e36e1c01016865c264ca3642f64b5034 (patch) | |
tree | fb9c51c23a3eda8caff8cc3580b5ca45e774a870 /spec/unit/puppet | |
parent | d809a9ef417f64797bb04fd70bc6bc900c2534ee (diff) | |
download | puppet-stdlib-57a5c0b3e36e1c01016865c264ca3642f64b5034.tar.gz puppet-stdlib-57a5c0b3e36e1c01016865c264ca3642f64b5034.tar.bz2 |
(Main) fix typo in pick error message
Update pick error message "at least one non empty value"
Diffstat (limited to 'spec/unit/puppet')
-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 |