From: Nicholas Clark Date: Thu, 20 Dec 2007 10:41:52 +0000 (+0000) Subject: Correct the test count in lib/File/Temp/t/lock.t X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=84a943b5b5fa4dfd9c368d1e3e5e07993fe24992;p=p5sagit%2Fp5-mst-13.2.git 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. p4raw-id: //depot/perl@32666 --- diff --git a/lib/File/Temp/t/lock.t b/lib/File/Temp/t/lock.t index cd62d54..d08b94a 100644 --- a/lib/File/Temp/t/lock.t +++ b/lib/File/Temp/t/lock.t @@ -11,7 +11,7 @@ BEGIN { if ($@) { plan skip_all => 'Do not seem to have O_EXLOCK'; } else { - plan tests => 3; + plan tests => 4; } use_ok( "File::Temp" );