From: asparkman Date: Tue, 17 May 2016 13:24:34 +0000 (+0100) Subject: Removes unecessary Content-Type header for GET unit tests X-Git-Tag: 5.90116~10^2~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=3dbe9f3d36e8304a4ae8bac5182d547386ff20a6 Removes unecessary Content-Type header for GET unit tests --- diff --git a/t/query_keywords_and_parameters.t b/t/query_keywords_and_parameters.t index ba8938b..29e0093 100644 --- a/t/query_keywords_and_parameters.t +++ b/t/query_keywords_and_parameters.t @@ -28,8 +28,7 @@ use Catalyst::Test 'MyApp'; # https://www.w3.org/TR/html5/forms.html#url-encoded-form-data { - ok my $req = GET 'root/bar', - 'Content-Type' => 'application/x-www-form-urlencoded'; + ok my $req = GET 'root/bar'; my ($res, $c) = ctx_request($req); @@ -39,8 +38,7 @@ use Catalyst::Test 'MyApp'; { - ok my $req = GET 'root/bar?', - 'Content-Type' => 'application/x-www-form-urlencoded'; + ok my $req = GET 'root/bar?'; my ($res, $c) = ctx_request($req); @@ -50,8 +48,7 @@ use Catalyst::Test 'MyApp'; { - ok my $req = GET 'root/bar?a=b', - 'Content-Type' => 'application/x-www-form-urlencoded'; + ok my $req = GET 'root/bar?a=b'; my ($res, $c) = ctx_request($req); @@ -61,8 +58,7 @@ use Catalyst::Test 'MyApp'; { - ok my $req = GET 'root/bar?x', - 'Content-Type' => 'application/x-www-form-urlencoded'; + ok my $req = GET 'root/bar?x'; my ($res, $c) = ctx_request($req); @@ -75,8 +71,7 @@ use Catalyst::Test 'MyApp'; { - ok my $req = GET 'root/bar?x&a=b', - 'Content-Type' => 'application/x-www-form-urlencoded'; + ok my $req = GET 'root/bar?x&a=b'; my ($res, $c) = ctx_request($req);