diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-20 17:07:28 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 06:28:51 +0100 |
commit | 9f1e4c2b3a566066038f53b280d9d7e6f5979627 (patch) | |
tree | 118b589ea4e2a922b63e2cf19586fde05f21165e /source4/selftest/output/html.pm | |
parent | b3b3af05f14c2d8d946ea024fcba1852949cb484 (diff) | |
download | samba-9f1e4c2b3a566066038f53b280d9d7e6f5979627.tar.gz samba-9f1e4c2b3a566066038f53b280d9d7e6f5979627.tar.bz2 samba-9f1e4c2b3a566066038f53b280d9d7e6f5979627.zip |
r26553: Fix html output.
(This used to be commit 769ac782f30805b725ed9aba532a976b2892ab03)
Diffstat (limited to 'source4/selftest/output/html.pm')
-rw-r--r-- | source4/selftest/output/html.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm index c97926c7a8..1049527129 100644 --- a/source4/selftest/output/html.pm +++ b/source4/selftest/output/html.pm @@ -12,13 +12,13 @@ use lib "$RealBin/.."; use Subunit qw(parse_results); -sub new$($$$) { +sub new($$$) { my ($class, $dirname, $statistics) = @_; my $self = { dirname => $dirname, active_test => undef, local_statistics => {}, - statistics => {}, + statistics => $statistics, msg => "", error_summary => { skip => [], |