Subject: | Don't skip more tests than planned |
t/26-xmlrpc.t may fail in network-less environments due to skipping 8 tests on line 28 while only 6 are planned.
The attached patch fixes the issue.
Subject: | perl-XML-Parser-Lite-0.719-plan.patch |
diff --git a/t/26-xmlrpc.t b/t/26-xmlrpc.t
index c747636..199b266 100644
--- a/t/26-xmlrpc.t
+++ b/t/26-xmlrpc.t
@@ -25,7 +25,7 @@ SKIP: {
$r = $s->test_connection;
unless ( defined $r && defined $r->envelope ) {
- skip 'need XMLRPC::Lite', 8 if $@;
+ skip 'need XMLRPC::Lite', 6 if $@;
print "1..0 # Skip: ", $s->transport->status, "\n";
exit;
}