From 4d5dfec8c7471b8c4d45bcb0ce8c77dca889beb9 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 1 Dec 2021 13:46:58 -0500 Subject: [PATCH] TT.t: fixup $_, since _ is a special variable, not a throwaway --- t/View/TT.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/View/TT.t b/t/View/TT.t index 118654fc..378bbbdb 100644 --- a/t/View/TT.t +++ b/t/View/TT.t @@ -22,7 +22,7 @@ require Hydra::View::TT; # there is no other reason to call /. require Catalyst::Test; Catalyst::Test->import('Hydra'); -my($_, $c) = ctx_request('/'); +my ($_request, $c) = ctx_request('/'); my $project = $db->resultset('Projects')->create({name => "tests", displayname => "", owner => "root"});