From 013653e068abfa72f121368759f516d2f7584506 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Sat, 21 Jul 2012 16:31:03 +0800 Subject: [PATCH] Bug 8487 - C4::Installer::PerlDependencies needs Test::Strict hash corrected I found Test::Strict used in /t/db_dependent/00-strict.t, so I set required => '1' and moved its value to 'min_ver' => '0.14' Content-Type: text/plain; charset="utf-8" --- C4/Installer/PerlDependencies.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index d5e9326..4688d42 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -576,7 +576,8 @@ our $PERL_DEPS = { }, 'Test::Strict' => { 'usage' => 'Core', - 'required' => '0.14', + 'required' => '1', + 'min_ver' => '0.14', }, 'Text::Unaccent' => { 'usage' => 'Core', -- 1.7.9.5