]> gitweb.fluxo.info Git - puppet-stdlib.git/commitdiff
Fix bad check in test
authorMorgan Haskel <morgan@puppetlabs.com>
Fri, 19 Dec 2014 00:20:02 +0000 (16:20 -0800)
committerMorgan Haskel <morgan@puppetlabs.com>
Fri, 19 Dec 2014 00:20:02 +0000 (16:20 -0800)
spec/acceptance/concat_spec.rb

index caf2f7d984939438c648642b20d08053819a6ce9..06b649f19f6fb8c5027f3c6cdf7df92480281fe6 100755 (executable)
@@ -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