summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-26 19:10:26 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-26 19:10:26 +0000
commit7d30b5c4c60a798b772f5d7bd3b85d21016359c7 (patch)
treeee12691ce71882115a98a9546a7a6b953d0d055a /t
parentdfdd1393a5b8826d427524003a858b7556c66371 (diff)
downloadperl-7d30b5c4c60a798b772f5d7bd3b85d21016359c7.tar.gz
s/STOP/CHECK/ blocks
p4raw-id: //depot/perl@4905
Diffstat (limited to 't')
-rwxr-xr-xt/op/misc.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/misc.t b/t/op/misc.t
index 9f8c7dedab..6ffc04cbcf 100755
--- a/t/op/misc.t
+++ b/t/op/misc.t
@@ -357,11 +357,11 @@ BEGIN { @ARGV = qw(a b c d e) }
BEGIN { print "argv <@ARGV>\nbegin <",shift,">\n" }
END { print "end <",shift,">\nargv <@ARGV>\n" }
INIT { print "init <",shift,">\n" }
-STOP { print "stop <",shift,">\n" }
+CHECK { print "check <",shift,">\n" }
EXPECT
argv <a b c d e>
begin <a>
-stop <b>
+check <b>
init <c>
end <d>
argv <e>