From 9f1e4c2b3a566066038f53b280d9d7e6f5979627 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 20 Dec 2007 17:07:28 +0100 Subject: r26553: Fix html output. (This used to be commit 769ac782f30805b725ed9aba532a976b2892ab03) --- source4/selftest/output/html.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4') 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 => [], -- cgit