diff options
Diffstat (limited to 't/lib')
-rwxr-xr-x | t/lib/dosglob.t | 2 | ||||
-rwxr-xr-x | t/lib/ftmp-posix.t | 4 | ||||
-rwxr-xr-x | t/lib/glob-global.t | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/t/lib/dosglob.t b/t/lib/dosglob.t index ea537bf6d1..91aa6cc8a9 100755 --- a/t/lib/dosglob.t +++ b/t/lib/dosglob.t @@ -39,7 +39,7 @@ while (defined($_ = <*/a*.t>)) { print "not " if @r != $r; print "ok 4\n"; -# check if array context works +# check if list context works @r = (); for (<*/a*.t>) { print "# $_\n"; diff --git a/t/lib/ftmp-posix.t b/t/lib/ftmp-posix.t index 6802374b10..8c9fd554e7 100755 --- a/t/lib/ftmp-posix.t +++ b/t/lib/ftmp-posix.t @@ -25,11 +25,11 @@ ok( !(-e $tmpnam )); print "# TMPNAM file name: $tmpnam\n"; -# TMPNAM array context +# TMPNAM list context # Not strict posix behaviour (my $fh, $tmpnam) = tmpnam(); -print "# TMPNAM: in array context: $fh $tmpnam\n"; +print "# TMPNAM: in list context: $fh $tmpnam\n"; # File is opened - make sure it exists ok( (-e $tmpnam )); diff --git a/t/lib/glob-global.t b/t/lib/glob-global.t index 9d273bd1ed..0045f891fa 100755 --- a/t/lib/glob-global.t +++ b/t/lib/glob-global.t @@ -56,7 +56,7 @@ while (defined($_ = <*/*.t>)) { print "not " if @r != $r; print "ok 5\n"; -# check if array context works +# check if list context works @r = (); for (<*/*.t>) { #print "# $_\n"; |