diff options
| author | Luke Kanies <luke@madstop.com> | 2005-08-24 02:53:17 +0000 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2005-08-24 02:53:17 +0000 |
| commit | 386ebee31dcc67ac5a7fb569ee58c2365e0666e1 (patch) | |
| tree | 78db9c5928457c23907f87a2d105185bb6664e51 /test/executables | |
| parent | 583a9c6e2a7469e4ae3b72264010a5d8d0dab867 (diff) | |
| download | puppet-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-x | test/executables/tc_puppetd.rb | 2 |
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 |
