diff options
| author | Colleen Murphy <cmurphy@users.noreply.github.com> | 2014-10-28 15:30:17 -0700 |
|---|---|---|
| committer | Colleen Murphy <cmurphy@users.noreply.github.com> | 2014-10-28 15:30:17 -0700 |
| commit | cfc79e9831fb530b4a34bb79db119969b3a166b3 (patch) | |
| tree | c955c144ec2386607f2ad7ac69edb1bcf44df320 /spec/acceptance/abs_spec.rb | |
| parent | 759cbdec886bebb859d8def9323c139faf99c024 (diff) | |
| parent | 51f1d574d92cf686ac79e57e69d8aff31caf2925 (diff) | |
| download | puppet-stdlib-cfc79e9831fb530b4a34bb79db119969b3a166b3.tar.gz puppet-stdlib-cfc79e9831fb530b4a34bb79db119969b3a166b3.tar.bz2 | |
Merge pull request #344 from cyberious/TestCaseFixes
Fix testcases for Future Parser and resolve issue with values_at in assuming that it was dealing with a string
Diffstat (limited to 'spec/acceptance/abs_spec.rb')
| -rwxr-xr-x | spec/acceptance/abs_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/acceptance/abs_spec.rb b/spec/acceptance/abs_spec.rb index 8e05642..6e41e2f 100755 --- a/spec/acceptance/abs_spec.rb +++ b/spec/acceptance/abs_spec.rb @@ -7,7 +7,7 @@ describe 'abs function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operati pp = <<-EOS $input = '-34.56' $output = abs($input) - notify { $output: } + notify { "$output": } EOS apply_manifest(pp, :catch_failures => true) do |r| @@ -19,7 +19,7 @@ describe 'abs function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operati pp = <<-EOS $input = -34.56 $output = abs($input) - notify { $output: } + notify { "$output": } EOS apply_manifest(pp, :catch_failures => true) do |r| |
