X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F07forking.t;fp=t%2F07forking.t;h=16b949b5cc02c478fb7e59afb9c690b2440f1281;hb=9c216915d12ea486f286186438c98593c2a3c60b;hp=c4f04635ce058c2aabf661fd313b72e83b019dfd;hpb=14f243e8c78199aad82785aa32f2f3e5409d9a9b;p=catagits%2FHTTP-Request-AsCGI.git diff --git a/t/07forking.t b/t/07forking.t index c4f0463..16b949b 100644 --- a/t/07forking.t +++ b/t/07forking.t @@ -10,7 +10,7 @@ use HTTP::Request::AsCGI; use Test::More; unless ( $Config{d_fork} ) { - plan skip_all => 'This test requires a plattform that supports fork()'; + plan skip_all => 'This test requires a platform that supports fork()'; } plan tests => 8; @@ -19,7 +19,7 @@ my $response; { my $r = HTTP::Request->new( GET => 'http://www.host.com/' ); - my $c = HTTP::Request::AsCGI->new($r); + my $c = HTTP::Request::AsCGI->new( request => $r ); my $kid = fork();