From: Nicholas Clark Date: Fri, 11 Nov 2005 14:16:30 +0000 (+0000) Subject: Correct the version-dependant expression for the number of tests, as it X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=736c8e7472a989af95503ed73eeb0403d987ab9e;p=p5sagit%2Fp5-mst-13.2.git Correct the version-dependant expression for the number of tests, as it is now giving the wrong number for 5.8.x p4raw-id: //depot/perl@26085 --- diff --git a/ext/B/t/concise-xs.t b/ext/B/t/concise-xs.t index a42d1df..591bf8a 100644 --- a/ext/B/t/concise-xs.t +++ b/ext/B/t/concise-xs.t @@ -89,8 +89,8 @@ BEGIN { use Getopt::Std; use Carp; use Test::More tests => ( 1 * !!$Config::Config{useithreads} - + 3 * ($] > 5.009) - + 777 ); + + 1 * ($] > 5.009) + + 779 ); require_ok("B::Concise");