diff options
Diffstat (limited to 'source4/selftest/output/html.pm')
-rw-r--r-- | source4/selftest/output/html.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm index 156b5b98c7..79775961c0 100644 --- a/source4/selftest/output/html.pm +++ b/source4/selftest/output/html.pm @@ -312,13 +312,14 @@ sub missing_env($$$) print INDEX "</tr>\n"; } -sub skip_testsuite($$) +sub skip_testsuite($$$) { - my ($self, $name) = @_; + my ($self, $envname, $name) = @_; print INDEX "<tr>\n"; print INDEX " <td class=\"testSuite\">$name</td>\n"; - print INDEX " <td class=\"resultSkipped\" colspan=\"2\">SKIPPED</td>\n"; + print INDEX " <td class=\"environment\">$envname</td>\n"; + print INDEX " <td class=\"resultSkipped\">SKIPPED</td>\n"; print INDEX "</tr>\n"; } |