diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 03:03:05 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 03:03:05 +0000 |
commit | 5603f27d0c70bf36f089b5830eae87c6486f07bc (patch) | |
tree | f4700d3cb136b4b02c047a809a9bc6c21320d54c /lib | |
parent | 9675f7ac35061616b1770751dc4303671c1e0ebe (diff) | |
download | perl-5603f27d0c70bf36f089b5830eae87c6486f07bc.tar.gz |
minor logic tweak for reserved word warning
p4raw-id: //depot/perl@3451
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Test/Harness.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Test/Harness.pm b/lib/Test/Harness.pm index 662ec7ff33..3cc3749027 100644 --- a/lib/Test/Harness.pm +++ b/lib/Test/Harness.pm @@ -300,7 +300,7 @@ sub runtests { die "Failed $bad/$total test scripts, $pct% okay.$subpct\n"; } } - printf("Files=%d, Tests=%d, %s\n", $files, $totmax, timestr($t_total, 'nop')); + printf("Files=%d, Tests=%d, %s\n", $files, $totmax, timestr($t_total, 'nop')); return ($bad == 0 && $totmax) ; } |