Change 32666 by [EMAIL PROTECTED] on 2007/12/20 10:41:52
Correct the test count in lib/File/Temp/t/lock.t
I guess that it was skipped in rather too many places, so no-one
noticed.
Affected files ...
... //depot/perl/lib/File/Temp/t/lock.t#3 edit
Differences ...
==== //depot/perl/lib/File/Temp/t/lock.t#3 (text) ====
Index: perl/lib/File/Temp/t/lock.t
--- perl/lib/File/Temp/t/lock.t#2~32657~ 2007-12-19 09:05:16.000000000
-0800
+++ perl/lib/File/Temp/t/lock.t 2007-12-20 02:41:52.000000000 -0800
@@ -11,7 +11,7 @@
if ($@) {
plan skip_all => 'Do not seem to have O_EXLOCK';
} else {
- plan tests => 3;
+ plan tests => 4;
}
use_ok( "File::Temp" );
End of Patch.