summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-05-04 18:31:19 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-05-04 18:31:19 +0000
commit4269b21d31641a087d235fa15be3b307d755c185 (patch)
tree8d5a4fc446bffeb4ad815de275b46a07f7d33983 /t
parent7376f93fbd879a866564da773adb7b6b1ffe5d19 (diff)
downloadperl-4269b21d31641a087d235fa15be3b307d755c185.tar.gz
Fix test numerotation
p4raw-id: //depot/perl@24386
Diffstat (limited to 't')
-rwxr-xr-xt/op/goto.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/goto.t b/t/op/goto.t
index e549e1ea88..ac3e48988d 100755
--- a/t/op/goto.t
+++ b/t/op/goto.t
@@ -10,7 +10,7 @@ BEGIN {
use warnings;
use strict;
-plan tests => 53;
+plan tests => 54;
our $foo;
while ($?) {
@@ -186,7 +186,7 @@ ok($ok, 'works correctly in a nested eval string');
sub f1 {
my $x;
- goto sub { $x=0; print "ok 28 - don't prematurely free CV\n" }
+ goto sub { $x=0; ok(1,"don't prematurely free CV\n") }
}
f1();