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
commit fc82877695
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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