X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=t%2Fwatchdog.t;h=ca001707dad4c933d709f6950726710a19dc440b;hp=c7e2c1fd464802a819b69a5c01a0f6a416dee2da;hb=052976d4a389b826a9551909492f3fc2f2312c88;hpb=f129bfaf05b1ae0e2e2992cad47a70482dec9885 diff --git a/t/watchdog.t b/t/watchdog.t index c7e2c1f..ca00170 100644 --- a/t/watchdog.t +++ b/t/watchdog.t @@ -1,7 +1,7 @@ use strictures 1; use Test::More; -require 't/logsetup.pl'; +$ENV{OBJECT_REMOTE_TEST_LOGGER} = 1; use Object::Remote::Connection; use Object::Remote::FromData; @@ -30,13 +30,13 @@ package HangClass; use Moo; sub alive { - return 1; + return 1; } sub hang { - while(1) { - sleep(1); - } + while(1) { + sleep(1); + } }