X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Fftmp-posix.t;h=2e455861e947cf2c37c01d4b832b1b101ccd95e9;hb=22d4bb9ccb8701e68f9243547d7e3a3c55f70908;hp=6802374b10bb05e5d97176a66fe795301f3d8f07;hpb=4b19af017623bfa3bb72bb164598a517f586e0d3;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/lib/ftmp-posix.t b/t/lib/ftmp-posix.t index 6802374..2e45586 100755 --- a/t/lib/ftmp-posix.t +++ b/t/lib/ftmp-posix.t @@ -3,7 +3,7 @@ BEGIN { chdir 't' if -d 't'; - unshift @INC, '../lib'; + @INC = '../lib'; require Test; import Test; plan(tests => 7); } @@ -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 ));