projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
93b7793
)
Arguments to skip were the wrong way round, hence why all the *BSDs
Nicholas Clark [Fri, 28 Nov 2003 19:14:58 +0000 (19:14 +0000)]
were failing
p4raw-id: //depot/perl@21794
t/op/readline.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/readline.t
b/t/op/readline.t
index
dec3e50
..
d047f16
100644
(file)
--- 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 $_=<F>;