In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/fb35b2c24f8da5fb8fa1a50fbab1868d072191db?hp=0dee1c27c65612712346c083a2ec5ea1af81405c>
- Log ----------------------------------------------------------------- commit fb35b2c24f8da5fb8fa1a50fbab1868d072191db Author: Nicholas Clark <[email protected]> Date: Wed Oct 21 10:10:05 2009 +0100 Fix precedence error in Module::CoreList's test, which was causing it to fail. ----------------------------------------------------------------------- Summary of changes: dist/Module-CoreList/t/deprecated.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dist/Module-CoreList/t/deprecated.t b/dist/Module-CoreList/t/deprecated.t index 8ee1825..1be2ed9 100644 --- a/dist/Module-CoreList/t/deprecated.t +++ b/dist/Module-CoreList/t/deprecated.t @@ -18,7 +18,7 @@ ok(exists $Module::CoreList::deprecated{5.011000}{'Switch'}, "Switch deprecated in 5.011000 (hash)" ); -is(!! Module::CoreList::is_deprecated('Switch'), !! $] >= 5.011, +is(!! Module::CoreList::is_deprecated('Switch'), !! ($] >= 5.011), "Switch deprecated current perl (function)" ); -- Perl5 Master Repository
