From 386ebee31dcc67ac5a7fb569ee58c2365e0666e1 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Wed, 24 Aug 2005 02:53:17 +0000 Subject: 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 --- test/executables/tc_puppetd.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/executables') 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 -- cgit