From: Upasana Date: Fri, 10 Jan 2014 19:59:47 +0000 (+0530) Subject: 1xx responses do not have any headers X-Git-Tag: 5.90060~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fe5d2f70f6fd0fb91bd12c321f9658347ab974b7 1xx responses do not have any headers --- diff --git a/t/lib/TestApp/Controller/Root.pm b/t/lib/TestApp/Controller/Root.pm index c3ab341..8541e2e 100644 --- a/t/lib/TestApp/Controller/Root.pm +++ b/t/lib/TestApp/Controller/Root.pm @@ -132,7 +132,6 @@ sub test_remove_body_with_100 :Global { my ($self, $c) = @_; $c->res->status(100); $c->res->body("Body should not be set"); - $c->res->content_type('text/html'); } sub test_nobody_with_100 :Global {