summaryrefslogtreecommitdiffstats
path: root/test/executables/puppetd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/executables/puppetd.rb')
-rwxr-xr-xtest/executables/puppetd.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/executables/puppetd.rb b/test/executables/puppetd.rb
index 9ae94b7c0..f8cb89ff6 100755
--- a/test/executables/puppetd.rb
+++ b/test/executables/puppetd.rb
@@ -3,7 +3,7 @@
$:.unshift("../lib").unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'puppet'
-require 'puppet/server'
+require 'puppet/network/server'
require 'puppettest'
require 'socket'
require 'facter'
@@ -15,7 +15,7 @@ class TestPuppetDExe < Test::Unit::TestCase
file = startmasterd
# create the client
- client = Puppet::Client::MasterClient.new(:Server => "localhost", :Port => @@port)
+ client = Puppet::Network::Client::MasterClient.new(:Server => "localhost", :Port => @@port)
# make a new fqdn
fqdn = client.fqdn.sub(/^\w+\./, "testing.")