Subject: | [PATCH] Correct "qw(...)" warning in tests |
Due to recent changes, 'make test' in blead is complaining with:
cpan/Pod-Simple/t/xhtml05......................................Use o
f qw(...) as parentheses is deprecated at t/xhtml05.t line 36.
ok
The attached patch corrects the offending test.
Subject: | test.patch |
--- Pod-Simple-3.14/t/xhtml05.t.orig 2009-12-04 01:41:50.000000000 -0500
+++ Pod-Simple-3.14/t/xhtml05.t 2010-09-20 14:14:39.672722000 -0400
@@ -33,7 +33,7 @@
EOHTML
-foreach my $target qw(note tip warning) {
+foreach my $target (qw(note tip warning)) {
initialize($parser, $results);
$parser->accept_targets_as_text( $target );
$parser->parse_string_document(<<"EOPOD");