summaryrefslogtreecommitdiff
path: root/t/op/pack.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-03 01:50:07 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-03 01:50:07 +0000
commit658bbd66c2d2a7c48f06bb97a9c36f4970ca2011 (patch)
treee0d4ada9cef379db88239c69dadf287a3096ed11 /t/op/pack.t
parente9a51be3c8837e8108362613c249a64299f11c48 (diff)
downloadperl-658bbd66c2d2a7c48f06bb97a9c36f4970ca2011.tar.gz
detypo
p4raw-id: //depot/cfgperl@5460
Diffstat (limited to 't/op/pack.t')
-rwxr-xr-xt/op/pack.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/pack.t b/t/op/pack.t
index 2c45fdd483..691a1a4096 100755
--- a/t/op/pack.t
+++ b/t/op/pack.t
@@ -20,8 +20,8 @@ print ($#ary == $#ary2 ? "ok 1\n" : "not ok 1\n");
$out1=join(':',@ary);
$out2=join(':',@ary2);
# Using long double NVs may introduce greater accuracy than wanted.
-$out1 =~ s/:9\.87654321097999\d*:/:9.87654321098:/,
-$out2 =~ s/:9\.87654321097999\d*:/:9.87654321098:/
+$out1 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
+ $out2 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
print ($out1 eq $out2? "ok 2\n" : "not ok 2\n");
print ($foo =~ /def/ ? "ok 3\n" : "not ok 3\n");