summaryrefslogtreecommitdiff
path: root/t/mbi_ltm_bigintpm.t
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2019-10-19 19:28:41 +0200
committerKarel Miko <karel.miko@gmail.com>2019-10-19 19:28:41 +0200
commitbc6b3c66ce09ecd2e787702954029f18a44aa776 (patch)
tree0c31582c398e1d61d9f010e923f637cfcb900c7e /t/mbi_ltm_bigintpm.t
parentbefdfb1d06e8558de775ae555d71b225c965a4fa (diff)
fix #56 Math::BigInt 1.999817 breaks the tests of CryptX
Diffstat (limited to 't/mbi_ltm_bigintpm.t')
-rw-r--r--t/mbi_ltm_bigintpm.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/mbi_ltm_bigintpm.t b/t/mbi_ltm_bigintpm.t
index 976e7b1e..b90213f7 100644
--- a/t/mbi_ltm_bigintpm.t
+++ b/t/mbi_ltm_bigintpm.t
@@ -6,7 +6,7 @@ use warnings;
use Test::More;
BEGIN {
- plan skip_all => "requires Math::BigInt 1.999712+" unless eval { require Math::BigInt && eval($Math::BigInt::VERSION) >= 1.999712 };
+ plan skip_all => "requires Math::BigInt 1.999817+" unless eval { require Math::BigInt && eval($Math::BigInt::VERSION) >= 1.999817 };
plan tests => 3712 # tests in require'd file
+ 6; # tests in this file
}