From: Tomas Doran Date: Sun, 22 Jan 2012 10:37:59 +0000 (+0000) Subject: Another recusion warning X-Git-Tag: 5.90008~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=421ae538d57b94e03b27d1b7fab0e4528d3b46e8 Another recusion warning --- diff --git a/t/lib/TestApp/Controller/Root.pm b/t/lib/TestApp/Controller/Root.pm index ed51778..c1bd6d5 100644 --- a/t/lib/TestApp/Controller/Root.pm +++ b/t/lib/TestApp/Controller/Root.pm @@ -56,6 +56,7 @@ sub loop_test : Local { sub recursion_test : Local { my ( $self, $c ) = @_; + no warnings 'recursion'; $c->forward( 'recursion_test' ); }