From abc55529237a5ba1f78b1a7b1fdd6e82167f8897 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 16 Jul 2011 22:09:46 -0700 Subject: [PATCH] Correct skip count in perlio.t This makes it pass under miniperl again. --- t/io/perlio.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/io/perlio.t b/t/io/perlio.t index a65b0d3..42619b5 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'); -- 2.7.4