[PATCH9 File/Find.pm doc nits
[p5sagit/p5-mst-13.2.git] / lib / File / stat.t
index af6c0d5..8215f45 100644 (file)
@@ -58,7 +58,6 @@ is( $stat->blocks, $stat[12], "number of blocks in position 12" );
 
 local $!;
 $stat = stat '/notafile';
-like( $!, qr/^No such file/, 
-       "should leave 'No such file' error in \$! with invalid file" );
+isn't( $!, '', 'should populate $!, given invalid file' );
 
 # Testing pretty much anything else is unportable.