Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / downcase_spec.rb
index 78bfec2..181e282 100644 (file)
@@ -2,8 +2,8 @@ require 'spec_helper'
 
 describe 'downcase', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do
   it { is_expected.not_to eq(nil) }
-  it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError) }
-  it { is_expected.to run.with_params(100).and_raise_error(Puppet::ParseError) }
+  it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{Wrong number of arguments}) }
+  it { is_expected.to run.with_params(100).and_raise_error(Puppet::ParseError, %r{Requires either array or string}) }
   it { is_expected.to run.with_params('abc').and_return('abc') }
   it { is_expected.to run.with_params('Abc').and_return('abc') }
   it { is_expected.to run.with_params('ABC').and_return('abc') }