Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms-test-suite:master commit in: pmstestsuite/library/standard/
Date: Tue, 03 Jan 2012 17:50:20
Message-Id: 39ca99c432c3f9b183237f386da32e2f2e45e2cb.mgorny@gentoo
1 commit: 39ca99c432c3f9b183237f386da32e2f2e45e2cb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 16:22:00 2012 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 16:22:00 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms-test-suite.git;a=commit;h=39ca99c4
7
8 Fix inherits in test cases.
9
10 ---
11 pmstestsuite/library/standard/eclass_depend.py | 2 +-
12 pmstestsuite/library/standard/eclass_metadata.py | 2 +-
13 2 files changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/pmstestsuite/library/standard/eclass_depend.py b/pmstestsuite/library/standard/eclass_depend.py
16 index 8f98ca5..57a68b9 100644
17 --- a/pmstestsuite/library/standard/eclass_depend.py
18 +++ b/pmstestsuite/library/standard/eclass_depend.py
19 @@ -2,7 +2,7 @@
20 # (c) 2011 Michał Górny <mgorny@g.o>
21 # Released under the terms of the 2-clause BSD license.
22
23 -from pmstestsuite.library.case import EbuildTestCase
24 +from pmstestsuite.library.depend_case import EclassDependencyTestCase
25 from .util import EbuildToucher
26
27 class DependInheritanceTest(EclassDependencyTestCase):
28
29 diff --git a/pmstestsuite/library/standard/eclass_metadata.py b/pmstestsuite/library/standard/eclass_metadata.py
30 index 18a4686..48474fe 100644
31 --- a/pmstestsuite/library/standard/eclass_metadata.py
32 +++ b/pmstestsuite/library/standard/eclass_metadata.py
33 @@ -4,7 +4,7 @@
34
35 from abc import abstractproperty
36
37 -from pmstestsuite.library.case import EclassTestCase
38 +from pmstestsuite.library.eclass_case import EclassTestCase
39
40 class VariableInheritanceTest(EclassTestCase):
41 """ Eclass variable inheritance test. """