Skip to content

Commit ee535f6

Browse files
committed
podcheck.t: Call proper SUPER methood
end_head1() extends SUPER::end_head1(). So call that. It turns out that this didn't matter currently, but is bad practice.
1 parent fadb7dd commit ee535f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/porting/podcheck.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ package My::Pod::Checker { # Extend Pod::Checker
11051105
my $addr = refaddr $self;
11061106
11071107
$in_NAME{$addr} = 1 if $running_simple_text{$addr} eq 'NAME';
1108-
return $self->SUPER::end_head(@_);
1108+
return $self->SUPER::end_head1(@_);
11091109
}
11101110
11111111
sub start_Verbatim {

0 commit comments

Comments
 (0)