Subject: | Broken test |
Test 09xpath.t has:
if (! (20700 > XML::LibXML::LIBXML_RUNTIME_VERSION))
{
skip "UTF-16 and HTML broken in libxml2 < 2.7", 1;
}
The logic is backwards (I am using libxml2 20623), it should be:
if ( 20700 > XML::LibXML::LIBXML_RUNTIME_VERSION )
{
skip "UTF-16 and HTML broken in libxml2 < 2.7", 1;
}