projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
cdf8b15
)
The #11593 wasn't right.
Jarkko Hietaniemi [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);
}