update logging api to match log-contextual 0.005
[scpubgit/Object-Remote.git] / t / watchdog_fatnode.t
index ee954f0..0183c78 100644 (file)
@@ -1,14 +1,12 @@
 use strictures 1;
 use Test::More;
 
-require 't/logsetup.pl';
+$ENV{OBJECT_REMOTE_TEST_LOGGER} = 1;
 
 use Object::Remote::Connector::Local; 
 
 $SIG{ALRM} = sub { die "alarm signal\n" };
 
-open(my $nullfh, '>', '/dev/null') or die "Could not open /dev/null: $!";
-
 my $fatnode_text = Object::Remote::Connector::Local->new(timeout => 1)->fatnode_text;
 
 #this simulates a node that has hung before it reaches
@@ -17,7 +15,6 @@ my $fatnode_text = Object::Remote::Connector::Local->new(timeout => 1)->fatnode_
 #if it's not handled right
 eval {
   no warnings 'once';
-  local *STDOUT = $nullfh;
   $Object::Remote::FatNode::INHIBIT_RUN_NODE = 1; 
   eval $fatnode_text;