From: Justin Hunter Date: Tue, 28 Feb 2012 20:33:09 +0000 (-0500) Subject: silence warning, see RT#75104 X-Git-Tag: 0.39~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-TT.git;a=commitdiff_plain;h=9ab4951cdcaeaffc529f34d9764599213de5ff49 silence warning, see RT#75104 --- diff --git a/t/lib/TestApp/Controller/Root.pm b/t/lib/TestApp/Controller/Root.pm index 18b61db..93afc38 100644 --- a/t/lib/TestApp/Controller/Root.pm +++ b/t/lib/TestApp/Controller/Root.pm @@ -49,7 +49,7 @@ sub test_msg : Local { my ($self, $c) = @_; my $tmpl = $c->req->param('msg'); - $c->stash->{message} = $c->view('TT::AppConfig')->render($c, \$tmpl); + $c->stash->{message} = $c->view('TT::Appconfig')->render($c, \$tmpl); $c->stash->{template} = 'test.tt'; }