Skip to content

Commit

Permalink
Fix a couple of oopsies
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Dec 9, 2023
1 parent 6b41925 commit 0f89652
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/03_builtin_pod_output.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ use Test::More;
# Hash of builtin => [output_start_regexp, output_end_regexp]
my %builtins = (
'tr' => [ # CPAN RT#86506
qr/\A\ h+ "tr\/\*SEARCHLIST\*\/\*REPLACEMENTLIST\*\/cdsr" \R/x,
qr/\R\s+eval "tr\/\$oldlist\/\$newlist\/, 1" or die \$\@;\R{2}\z/;
qr/\A \h+ "tr\/\*SEARCHLIST\*\/\*REPLACEMENTLIST\*\/cdsr" \R/x,
qr/\R\s+eval "tr\/\$oldlist\/\$newlist\/, 1" or die \$\@;\R{2}\z/,
],
'==' => [ # CPAN RT#126015
qr/\A\s+Equality Operators\n/,
qr/\n\s+if \( fc\(\$x\) eq fc\(\$y\) \) \{ \.\.\. \}\R{2}\z/
qr/\n\s+if \( fc\(\$x\) eq fc\(\$y\) \) \{ \.\.\. \}\R{2}\z/,
],
'<>' => [ # CPAN RT#126015
qr/\A\s+I\/O Operators\R/,
qr/\n\s+for its regular truth value\.\R{2}\z/
qr/\n\s+for its regular truth value\.\R{2}\z/,
]
);

Expand Down

0 comments on commit 0f89652

Please sign in to comment.