From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QpS4u-00013C-RM for garchives@archives.gentoo.org; Fri, 05 Aug 2011 21:37:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3F3421C072; Fri, 5 Aug 2011 21:36:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 877C021C072 for ; Fri, 5 Aug 2011 21:36:50 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 184BD1B4022 for ; Fri, 5 Aug 2011 21:36:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 27B8480040 for ; Fri, 5 Aug 2011 21:36:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/output/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/output/html.py X-VCS-Directories: pmstestsuite/output/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a3069eea0a4cf48f510cf2eb12e57d6a4156967c Date: Fri, 5 Aug 2011 21:36:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 145ff922694594fcf32ace04a899c929 commit: a3069eea0a4cf48f510cf2eb12e57d6a4156967c Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Fri Aug 5 20:32:59 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Fri Aug 5 20:32:59 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3Da3069eea Fix HTML table misalignment. --- pmstestsuite/output/html.py | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py index 5842eb9..8a464ab 100644 --- a/pmstestsuite/output/html.py +++ b/pmstestsuite/output/html.py @@ -129,11 +129,11 @@ class HTMLOutput(OutputModule): table[0][2] =3D TH('Assertion') table[0][3] =3D TH('Expected') for i, pm in enumerate(mypms): - table[0][4 + i*3] =3D TH(pm.name, colspan =3D 3) - table[0][5 + i*3] =3D NoCell() - table[1][4 + i*3] =3D TH('Actual') - table[1][5 + i*3] =3D TH('Result') - maxcol =3D 6 + i*3 + table[0][4 + i*2] =3D TH(pm.name, colspan =3D 2) + table[0][5 + i*2] =3D NoCell() + table[1][4 + i*2] =3D TH('Actual') + table[1][5 + i*2] =3D TH('Result') + maxcol =3D 6 + i*2 =20 row =3D 2 for cl, tests in _results_by_class(results).items():