diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-05 00:28:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-05 00:28:27 +0000 |
commit | d0dafe05a556cb3683ea133741bc22db5bee23c0 (patch) | |
tree | 07da1493cdd747db06f2bdadc1a69461ddfb94f6 /t/op | |
parent | c5ee92749eadb7f0835d2bb85aee16dbd945aaf2 (diff) | |
download | perl-d0dafe05a556cb3683ea133741bc22db5bee23c0.tar.gz |
Unnecessary fuzziness undone, noted by Mike Guy.
p4raw-id: //depot/perl@10440
Diffstat (limited to 't/op')
-rwxr-xr-x | t/op/tr.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] |