Subject: | Failed Test - Won't install without Force |
Bug:
The test fails with the default hostname (could be due to any number of things, like dns settings, IP tables....). The reported error isn't helpful either.
Fix:
Use 'localhost'.
t/local/back.t: line 128
Was: my $server404 = HTTP::Daemon->new() or die;
Changed to: my $server404 = HTTP::Daemon->new( LocalAddr => 'localhost' ) or die;
Cheers,
Iain Fothergill