diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-01 21:17:13 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-01 21:17:13 +0000 |
| commit | 81ce66a92a482aa1225fffa98fce4e874d2a83d0 (patch) | |
| tree | 9ba899fa3d81c9264906f26b95c44e3309a9c1e5 | |
| parent | 011e811f6e9096eedc1b500bb00841292897258b (diff) | |
| download | puppet-81ce66a92a482aa1225fffa98fce4e874d2a83d0.tar.gz puppet-81ce66a92a482aa1225fffa98fce4e874d2a83d0.tar.xz puppet-81ce66a92a482aa1225fffa98fce4e874d2a83d0.zip | |
Fixing node tests to handle comma separation
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1232 980ebf18-57e1-0310-9a29-db15c13687c0
| -rw-r--r-- | test/language/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/language/node.rb b/test/language/node.rb index 5013b190d..81a4c77cb 100644 --- a/test/language/node.rb +++ b/test/language/node.rb @@ -49,7 +49,7 @@ class TestParser < Test::Unit::TestCase hostnames = [ hostnames ] end assert_nothing_raised { - @parser.string = "node #{hostnames.join(" ")} { }" + @parser.string = "node #{hostnames.join(", ")} { }" } # Strip quotes hostnames.map! { |s| s.sub(/^'(.*)'$/, "\\1") } |
