From: Jarkko Hietaniemi Date: Tue, 5 Jun 2001 00:28:27 +0000 (+0000) Subject: Unnecessary fuzziness undone, noted by Mike Guy. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d0dafe05a556cb3683ea133741bc22db5bee23c0;p=p5sagit%2Fp5-mst-13.2.git Unnecessary fuzziness undone, noted by Mike Guy. p4raw-id: //depot/perl@10440 --- diff --git a/t/op/tr.t b/t/op/tr.t index 5c75b60..1e30365 100755 --- a/t/op/tr.t +++ b/t/op/tr.t @@ -43,7 +43,7 @@ print "ok 3\n"; (my $y = 12) =~ tr/1/3/; ($f = 1.5) =~ tr/1/3/; (my $g = 1.5) =~ tr/1/3/; -print "not " unless $x + $y + $f + $g > 70.9; +print "not " unless $x + $y + $f + $g == 71; print "ok 5\n"; # make sure tr is harmless if not updating - see [ID 20000511.005]