Tue Jul 08 18:47:02 2008user42 [...] zip.com.au - Ticket created
Subject:
Test::More _eq_array,_eq_hash ! versus eq
Date:
Wed, 09 Jul 2008 08:17:11 +1000
To:
bug-test-simple [...] rt.cpan.org
From:
Kevin Ryde <user42 [...] zip.com.au>
In Test/More.pm 0.80 I noticed in _eq_array()
if( grep !_type($_) eq 'ARRAY', $a1, $a2 ) {
which I think may be always false due to ! having higher precedence than
eq. Similar in _eq_hash.
As far as I can tell there's no active harm as it looks like $a1 and $a2
are already always arrayrefs at that point, for the public interface at
least.