diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-11 14:16:30 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-11 14:16:30 +0000 |
commit | 736c8e7472a989af95503ed73eeb0403d987ab9e (patch) | |
tree | 5beb5a69018c471554531d047b0a7bb4127af160 | |
parent | 0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba (diff) | |
download | perl-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.t | 4 |
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"); |