diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-05-04 18:25:25 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-05-04 18:25:25 +0000 |
commit | 5a13a130d7c1d8c7c3bfac164c3e3cdc042f6c2b (patch) | |
tree | d6e946c95d8b1dc0ca7bc910b85aaa6724b07067 /t | |
parent | 8e8f246af5d39ba29174ca7db7e1998f5c0abb88 (diff) | |
download | perl-5a13a130d7c1d8c7c3bfac164c3e3cdc042f6c2b.tar.gz |
Syntax fix.
p4raw-id: //depot/perl@16402
Diffstat (limited to 't')
-rwxr-xr-x | t/op/arith.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/arith.t b/t/op/arith.t index 9cf6f5abd1..654ce3b857 100755 --- a/t/op/arith.t +++ b/t/op/arith.t @@ -263,7 +263,7 @@ tryeq_sloppy 130, 18446744073709551616/9223372036854775808, 2; my $n = 1127; my $float = ($n % 1000) * 167772160.0; - tryeq 131_sloppy, $float, 21307064320; + tryeq_sloppy 131, $float, 21307064320; # On a 32 bit machine, if the i_multiply op is used, you will probably get # -167772160. It's actually undefined behaviour, so anything may happen. |