diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-26 19:10:26 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-26 19:10:26 +0000 |
commit | 7d30b5c4c60a798b772f5d7bd3b85d21016359c7 (patch) | |
tree | ee12691ce71882115a98a9546a7a6b953d0d055a /t/op/misc.t | |
parent | dfdd1393a5b8826d427524003a858b7556c66371 (diff) | |
download | perl-7d30b5c4c60a798b772f5d7bd3b85d21016359c7.tar.gz |
s/STOP/CHECK/ blocks
p4raw-id: //depot/perl@4905
Diffstat (limited to 't/op/misc.t')
-rwxr-xr-x | t/op/misc.t | 4 |
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> |