From: Nicholas Clark Date: Fri, 28 Nov 2003 19:14:58 +0000 (+0000) Subject: Arguments to skip were the wrong way round, hence why all the *BSDs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=389edf241b78737b2f85067f44d638ceaf8a0e8e;p=p5sagit%2Fp5-mst-13.2.git Arguments to skip were the wrong way round, hence why all the *BSDs were failing p4raw-id: //depot/perl@21794 --- diff --git a/t/op/readline.t b/t/op/readline.t index dec3e50..d047f16 100644 --- a/t/op/readline.t +++ b/t/op/readline.t @@ -64,7 +64,7 @@ my $err = $! + 0; close F; SKIP: { - skip 2 => "you can read directories as plain files" unless( $err ); + skip "you can read directories as plain files", 2 unless( $err ); $!=0; open F, File::Spec->curdir and $_=;