This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdf8b15
)
The #11593 wasn't right.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 6 Aug 2001 12:51:38 +0000
(12:51 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 6 Aug 2001 12:51:38 +0000
(12:51 +0000)
p4raw-id: //depot/perl@11595
lib/Math/BigInt/t/bigintpm.t
patch
|
blob
|
blame
|
history
diff --git
a/lib/Math/BigInt/t/bigintpm.t
b/lib/Math/BigInt/t/bigintpm.t
index
b48f223
..
4b28f0b
100755
(executable)
--- a/
lib/Math/BigInt/t/bigintpm.t
+++ b/
lib/Math/BigInt/t/bigintpm.t
@@
-534,8
+534,8
@@
$x = Math::BigInt->new('+inf'); ok_inf ($x,$y);
sub ok_inf {
my ($x, $y) = @_;
- $x =~ s/^inf(?:inity)?/
$1
/i;
- $y =~ s/^inf(?:inity)?/
$1
/i;
+ $x =~ s/^inf(?:inity)?/
Inf
/i;
+ $y =~ s/^inf(?:inity)?/
Inf
/i;
ok($x, $y);
}