aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-01-03 17:22:00 +0100
committerMichał Górny <mgorny@gentoo.org>2012-01-03 17:22:00 +0100
commit39ca99c432c3f9b183237f386da32e2f2e45e2cb (patch)
tree742d724fab29a63c98570b53b7b3103bdb196724
parentRemove old dbus_case API. (diff)
downloadpms-test-suite-39ca99c432c3f9b183237f386da32e2f2e45e2cb.tar.gz
pms-test-suite-39ca99c432c3f9b183237f386da32e2f2e45e2cb.tar.bz2
pms-test-suite-39ca99c432c3f9b183237f386da32e2f2e45e2cb.zip
Fix inherits in test cases.
-rw-r--r--pmstestsuite/library/standard/eclass_depend.py2
-rw-r--r--pmstestsuite/library/standard/eclass_metadata.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pmstestsuite/library/standard/eclass_depend.py b/pmstestsuite/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ł Górny <mgorny@gentoo.org>
# Released under the terms of the 2-clause BSD license.
-from pmstestsuite.library.case import EbuildTestCase
+from pmstestsuite.library.depend_case import EclassDependencyTestCase
from .util import EbuildToucher
class DependInheritanceTest(EclassDependencyTestCase):
diff --git a/pmstestsuite/library/standard/eclass_metadata.py b/pmstestsuite/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 @@
from abc import abstractproperty
-from pmstestsuite.library.case import EclassTestCase
+from pmstestsuite.library.eclass_case import EclassTestCase
class VariableInheritanceTest(EclassTestCase):
""" Eclass variable inheritance test. """