diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-10 23:37:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-10 23:37:09 +0000 |
commit | 9811a09ccbe459f08959a12230024bdfb9a9977f (patch) | |
tree | d53b37c9a57b070ca527b56f69ac488f948c4616 /t/pod | |
parent | ab1f1d91718d3ea14ab3ebc4fc169516f655f3d7 (diff) | |
download | perl-9811a09ccbe459f08959a12230024bdfb9a9977f.tar.gz |
Silence t/pod/*.t about alternate quote-mappings now implemented
by Pod::Text, from Brad Appleton.
p4raw-id: //depot/perl@7048
Diffstat (limited to 't/pod')
-rw-r--r-- | t/pod/testp2pt.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/pod/testp2pt.pl b/t/pod/testp2pt.pl index 2ff8aa427a..91a20eeeec 100644 --- a/t/pod/testp2pt.pl +++ b/t/pod/testp2pt.pl @@ -106,7 +106,7 @@ sub begin_input { sub podinc2plaintext( $ $ ) { my ($infile, $outfile) = @_; local $_; - my $text_parser = $MYPKG->new; + my $text_parser = $MYPKG->new(quotes => "`'"); $text_parser->parse_from_file($infile, $outfile); } |