Syntax fix.
Rafael Garcia-Suarez [Sat, 4 May 2002 18:25:25 +0000 (18:25 +0000)]
p4raw-id: //depot/perl@16402

t/op/arith.t

index 9cf6f5a..654ce3b 100755 (executable)
@@ -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.