Skip to content

Commit

Permalink
Fix t/05-custom_template.t. The depshash key was renamed to pkglinks.
Browse files Browse the repository at this point in the history
  • Loading branch information
juster committed Sep 6, 2013
1 parent 47b701b commit 791d7f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/05-custom_template.t
Expand Up @@ -12,15 +12,15 @@ sub process
{
my ($self, $templ_ref, $params_ref, $output_ref) = @_;

delete $params_ref->{ 'depshash' };
for my $key ( sort keys %$params_ref ) {
delete $params_ref->{'pkglinks'};
for my $key (sort keys %$params_ref) {
$$output_ref .= "$key = $params_ref->{$key}\n";
}

return 1;
}

$INC{ 'Template/Fake.pm' } = $0;
$INC{'Template/Fake.pm'} = $0;

1;

Expand Down

0 comments on commit 791d7f1

Please sign in to comment.