summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-07-16 22:09:46 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-07-16 22:09:46 -0700
commitabc55529237a5ba1f78b1a7b1fdd6e82167f8897 (patch)
treefacb42bd8988369a447d94e9f40db70ef33889ba /t/io
parentc62f68e39fa160b93d5cef94073789a60a01cae9 (diff)
downloadperl-abc55529237a5ba1f78b1a7b1fdd6e82167f8897.tar.gz
Correct skip count in perlio.t
This makes it pass under miniperl again.
Diffstat (limited to 't/io')
-rw-r--r--t/io/perlio.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/perlio.t b/t/io/perlio.t
index a65b0d3eb9..42619b5dff 100644
--- a/t/io/perlio.t
+++ b/t/io/perlio.t
@@ -132,7 +132,7 @@ sub find_filename {
SKIP: {
eval { require PerlIO::scalar };
unless (find PerlIO::Layer 'scalar') {
- skip("PerlIO::scalar not found", 9);
+ skip("PerlIO::scalar not found", 11);
}
my $var;
ok( open(my $x,"+<",\$var), 'magic in-memory file via 3 arg open with \\$var');