Merge pull request #1069 from DeterminateSystems/fixup-my-under

TT.t: fixup $_, since _ is a special variable, not a throwaway
This commit is contained in:
Graham Christensen
2021-12-01 14:04:38 -05:00
committed by GitHub

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