summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-11-11 14:16:30 +0000
committerNicholas Clark <nick@ccl4.org>2005-11-11 14:16:30 +0000
commit736c8e7472a989af95503ed73eeb0403d987ab9e (patch)
tree5beb5a69018c471554531d047b0a7bb4127af160
parent0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba (diff)
downloadperl-736c8e7472a989af95503ed73eeb0403d987ab9e.tar.gz
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
-rw-r--r--ext/B/t/concise-xs.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/t/concise-xs.t b/ext/B/t/concise-xs.t
index a42d1dfaac..591bf8a52e 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");