Skip to content

Commit

Permalink
Fix up start and finish times in text report.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcj committed Aug 2, 2012
1 parent 22626dc commit a5e2652
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/cover
Expand Up @@ -362,7 +362,7 @@ sub main
$format->launch($Options); $format->launch($Options);
} }
else { else {
print STDERR "launch not available for $Options->{report} reports\n"; print STDERR "launch not available for $Options->{report} reports\n"
} }
} }
} }
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Report/Text.pm
Expand Up @@ -22,8 +22,8 @@ sub print_runs
print "Run: ", $r->run, "\n"; print "Run: ", $r->run, "\n";
print "Perl version: ", $r->perl, "\n"; print "Perl version: ", $r->perl, "\n";
print "OS: ", $r->OS, "\n"; print "OS: ", $r->OS, "\n";
print "Start: ", scalar gmtime $r->start / 1e6, "\n"; print "Start: ", scalar gmtime $r->start , "\n";
print "Finish: ", scalar gmtime $r->finish / 1e6, "\n"; print "Finish: ", scalar gmtime $r->finish, "\n";
print "\n"; print "\n";
# use Devel::Cover::Dumper; print Dumper $r; # use Devel::Cover::Dumper; print Dumper $r;
} }
Expand Down

0 comments on commit a5e2652

Please sign in to comment.