TT.t: fixup $_, since _ is a special variable, not a throwaway

This commit is contained in:
Graham Christensen 2021-12-01 13:46:58 -05:00
parent e5be4a9022
commit 4d5dfec8c7

View file

@ -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"});