diff options
author | Luke Kanies <luke@madstop.com> | 2007-12-10 21:13:48 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-12-10 21:13:48 -0600 |
commit | f127d04934b679b3e5edd7f55d31342abce3c96e (patch) | |
tree | bb8bc15e086b473bc27104cd6fcbbf548a68678e /test | |
parent | 7a4ae082c216d68092f140ed1f5cca40ffb1a09e (diff) | |
download | puppet-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-x | test/network/handler/configuration.rb | 2 |
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") |