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 1Ri8V6-0004yV-I9 for garchives@archives.gentoo.org; Tue, 03 Jan 2012 17:50:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FFA521C1E5; Tue, 3 Jan 2012 17:50:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4348321C046 for ; Tue, 3 Jan 2012 17:50:03 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1BFA1B4010 for ; Tue, 3 Jan 2012 17:50:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id DF38F80042 for ; Tue, 3 Jan 2012 17:50:01 +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: <39ca99c432c3f9b183237f386da32e2f2e45e2cb.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/library/standard/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: pmstestsuite/library/standard/eclass_depend.py pmstestsuite/library/standard/eclass_metadata.py X-VCS-Directories: pmstestsuite/library/standard/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 39ca99c432c3f9b183237f386da32e2f2e45e2cb Date: Tue, 3 Jan 2012 17:50:01 +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: 13c5bfeb-1f4c-4d19-94ea-81cc547fcfa5 X-Archives-Hash: 4b3fb7fe74ea9f0708bbeaa06c7c39d8 commit: 39ca99c432c3f9b183237f386da32e2f2e45e2cb Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Tue Jan 3 16:22:00 2012 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Tue Jan 3 16:22:00 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3D39ca99c4 Fix inherits in test cases. --- pmstestsuite/library/standard/eclass_depend.py | 2 +- pmstestsuite/library/standard/eclass_metadata.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pmstestsuite/library/standard/eclass_depend.py b/pmstestsuit= e/library/standard/eclass_depend.py index 8f98ca5..57a68b9 100644 --- a/pmstestsuite/library/standard/eclass_depend.py +++ b/pmstestsuite/library/standard/eclass_depend.py @@ -2,7 +2,7 @@ # (c) 2011 Micha=C5=82 G=C3=B3rny # Released under the terms of the 2-clause BSD license. =20 -from pmstestsuite.library.case import EbuildTestCase +from pmstestsuite.library.depend_case import EclassDependencyTestCase from .util import EbuildToucher =20 class DependInheritanceTest(EclassDependencyTestCase): diff --git a/pmstestsuite/library/standard/eclass_metadata.py b/pmstestsu= ite/library/standard/eclass_metadata.py index 18a4686..48474fe 100644 --- a/pmstestsuite/library/standard/eclass_metadata.py +++ b/pmstestsuite/library/standard/eclass_metadata.py @@ -4,7 +4,7 @@ =20 from abc import abstractproperty =20 -from pmstestsuite.library.case import EclassTestCase +from pmstestsuite.library.eclass_case import EclassTestCase =20 class VariableInheritanceTest(EclassTestCase): """ Eclass variable inheritance test. """