summaryrefslogtreecommitdiffstats
path: root/test/executables
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-08-24 02:53:17 +0000
committerLuke Kanies <luke@madstop.com>2005-08-24 02:53:17 +0000
commit386ebee31dcc67ac5a7fb569ee58c2365e0666e1 (patch)
tree78db9c5928457c23907f87a2d105185bb6664e51 /test/executables
parent583a9c6e2a7469e4ae3b72264010a5d8d0dab867 (diff)
downloadpuppet-386ebee31dcc67ac5a7fb569ee58c2365e0666e1.tar.gz
puppet-386ebee31dcc67ac5a7fb569ee58c2365e0666e1.tar.xz
puppet-386ebee31dcc67ac5a7fb569ee58c2365e0666e1.zip
replacing if statements with case statement, and adding defaults for both selectors and case statements
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@587 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/executables')
-rwxr-xr-xtest/executables/tc_puppetd.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/executables/tc_puppetd.rb b/test/executables/tc_puppetd.rb
index 235db386f..264bc80ef 100755
--- a/test/executables/tc_puppetd.rb
+++ b/test/executables/tc_puppetd.rb
@@ -45,7 +45,7 @@ class TestPuppetDExe < Test::Unit::TestCase
file = File.join($puppetbase, "examples", "code", "head")
output = nil
assert_nothing_raised {
- output = %x{puppetmasterd --manifest #{file}}.chomp
+ output = %x{puppetmasterd --port #{Puppet[:masterport]} --manifest #{file}}.chomp
}
assert($? == 0)
@@tmppids << $?.pid