diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-07-16 22:09:46 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-16 22:09:46 -0700 |
commit | abc55529237a5ba1f78b1a7b1fdd6e82167f8897 (patch) | |
tree | facb42bd8988369a447d94e9f40db70ef33889ba /t/io | |
parent | c62f68e39fa160b93d5cef94073789a60a01cae9 (diff) | |
download | perl-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.t | 2 |
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'); |