From: Morgan Haskel Date: Fri, 19 Dec 2014 00:20:02 +0000 (-0800) Subject: Fix bad check in test X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=31a6d894107f8f2ef4e0aec081f505d153e6297c;p=puppet-stdlib.git Fix bad check in test --- diff --git a/spec/acceptance/concat_spec.rb b/spec/acceptance/concat_spec.rb index caf2f7d..06b649f 100755 --- a/spec/acceptance/concat_spec.rb +++ b/spec/acceptance/concat_spec.rb @@ -29,7 +29,7 @@ describe 'concat function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('oper pp = <<-EOS $output = concat(['1','2','3'],['4','5','6'],['7','8','9']) validate_array($output) - if size($output) != 6 { + if size($output) != 9 { fail("${output} should have 9 elements.") } EOS