From: Dan Dascalescu Date: Thu, 14 Jan 2010 09:23:50 +0000 (+0000) Subject: Cosmetic: wrapped long code line X-Git-Tag: 5.80019~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=efcb1ae7c31fbef6407421c9e0835acfdeb82af8 Cosmetic: wrapped long code line --- diff --git a/t/lib/TestAppEncoding/Controller/Root.pm b/t/lib/TestAppEncoding/Controller/Root.pm index 391a2cd..095f238 100644 --- a/t/lib/TestAppEncoding/Controller/Root.pm +++ b/t/lib/TestAppEncoding/Controller/Root.pm @@ -8,7 +8,11 @@ __PACKAGE__->config->{namespace} = ''; sub binary : Local { my ($self, $c) = @_; - $c->res->body(do { open(my $fh, '<', $c->path_to('..', '..', 'catalyst_130pix.gif')) or die $!; binmode($fh); local $/ = undef; <$fh>; }); + $c->res->body(do { + open(my $fh, '<', $c->path_to('..', '..', 'catalyst_130pix.gif')) or die $!; + binmode($fh); + local $/ = undef; <$fh>; + }); } sub binary_utf8 : Local {