summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions
diff options
context:
space:
mode:
authorMatthew Haughton <3flex@users.noreply.github.com>2013-10-29 14:21:03 -0400
committerJosh Cooper <josh@puppetlabs.com>2013-10-29 12:01:25 -0700
commit57a5c0b3e36e1c01016865c264ca3642f64b5034 (patch)
treefb9c51c23a3eda8caff8cc3580b5ca45e774a870 /spec/unit/puppet/parser/functions
parentd809a9ef417f64797bb04fd70bc6bc900c2534ee (diff)
downloadpuppet-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/parser/functions')
-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