In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/dfc949a06e1ca43ec18b9a191539e082e707d41e?hp=a44d0896a6c4bfe01ea532694b8c1c073ea6a2f1>

- Log -----------------------------------------------------------------
commit dfc949a06e1ca43ec18b9a191539e082e707d41e
Author: Craig A. Berry <[email protected]>
Date:   Thu Oct 15 18:05:50 2009 -0500

    Restore 8d2345e02f493825c3e22467caf8508ee3a19450.
    
    Also reported upstream this time (oops):
    
    https://rt.cpan.org/Ticket/Display.html?id=50542
-----------------------------------------------------------------------

Summary of changes:
 cpan/Text-Tabs/t/fill.t |    5 ++---
 cpan/Text-Tabs/t/tabs.t |    5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/cpan/Text-Tabs/t/fill.t b/cpan/Text-Tabs/t/fill.t
index dab0432..8af4a0e 100644
--- a/cpan/Text-Tabs/t/fill.t
+++ b/cpan/Text-Tabs/t/fill.t
@@ -49,9 +49,8 @@ DONE
 
 $| = 1;
 
-print "1..";
-print @tests/2;
-print "\n";
+my $numtests = scalar(@tests) / 2;
+print "1..$numtests\n";
 
 use Text::Wrap;
 
diff --git a/cpan/Text-Tabs/t/tabs.t b/cpan/Text-Tabs/t/tabs.t
index 1bba9a6..cd6f32c 100644
--- a/cpan/Text-Tabs/t/tabs.t
+++ b/cpan/Text-Tabs/t/tabs.t
@@ -86,9 +86,8 @@ DONE
 
 $| = 1;
 
-print "1..";
-print @tests/2;
-print "\n";
+my $numtests = scalar(@tests) / 2;
+print "1..$numtests\n";
 
 use Text::Tabs;
 

--
Perl5 Master Repository

Reply via email to