diff options
Diffstat (limited to 't/op')
-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> |