summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-12-10 21:13:48 -0600
committerLuke Kanies <luke@madstop.com>2007-12-10 21:13:48 -0600
commitf127d04934b679b3e5edd7f55d31342abce3c96e (patch)
treebb8bc15e086b473bc27104cd6fcbbf548a68678e /test
parent7a4ae082c216d68092f140ed1f5cca40ffb1a09e (diff)
downloadpuppet-f127d04934b679b3e5edd7f55d31342abce3c96e.tar.gz
puppet-f127d04934b679b3e5edd7f55d31342abce3c96e.tar.xz
puppet-f127d04934b679b3e5edd7f55d31342abce3c96e.zip
Fixing #951 -- external nodes work again, but you have to
set the 'node_terminus' setting to 'exec'.
Diffstat (limited to 'test')
-rwxr-xr-xtest/network/handler/configuration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/network/handler/configuration.rb b/test/network/handler/configuration.rb
index e560bd624..36c5d9e54 100755
--- a/test/network/handler/configuration.rb
+++ b/test/network/handler/configuration.rb
@@ -145,7 +145,7 @@ class TestHandlerConfiguration < Test::Unit::TestCase
# First try the case where we can't look up the node
config = Config.new
node = Object.new
- Puppet::Node.stubs(:search).with(:client).returns(false, node)
+ Puppet::Node.stubs(:find_by_any_name).with(:client).returns(false, node)
interp = Object.new
assert_instance_of(Bignum, config.version(:client), "Did not return configuration version")