diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-05 23:27:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-05 23:27:57 +0000 |
commit | 5c7bc39a40ac58dc19b5fe33db234cae1e26293e (patch) | |
tree | b8f9f6ba2a6faad2466cbd1a00d49a211001643e /t | |
parent | 6cf89afa34f7978c2a9aa74aacf9a7b22c527281 (diff) | |
download | perl-5c7bc39a40ac58dc19b5fe33db234cae1e26293e.tar.gz |
In UNICOS division yada yada.
p4raw-id: //depot/perl@11902
Diffstat (limited to 't')
-rwxr-xr-x | t/op/override.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/override.t b/t/op/override.t index d24bdee31a..db94ed0495 100755 --- a/t/op/override.t +++ b/t/op/override.t @@ -47,7 +47,7 @@ print "not " unless $r eq "5.6"; print "ok 6\n"; require v5.6; -print "not " unless $r == 5.006 && $r eq "\x05\x06"; +print "not " unless abs($r - 5.006) < 0.001 && $r eq "\x05\x06"; print "ok 7\n"; eval "use Foo"; |