aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pmstestsuite/library/standard/workdir_fallback.py')
-rw-r--r--pmstestsuite/library/standard/workdir_fallback.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pmstestsuite/library/standard/workdir_fallback.py b/pmstestsuite/library/standard/workdir_fallback.py
index 04ce281..6416ac6 100644
--- a/pmstestsuite/library/standard/workdir_fallback.py
+++ b/pmstestsuite/library/standard/workdir_fallback.py
@@ -2,9 +2,9 @@
# (c) 2011 Michał Górny <mgorny@gentoo.org>
# Released under the terms of the 2-clause BSD license.
-from .ext_cases import DBusFetchingEbuildTestCase
+from .ext_cases import FetchingEbuildTestCase
-class WorkdirFallbackTest(DBusFetchingEbuildTestCase):
+class WorkdirFallbackTest(FetchingEbuildTestCase):
""" S=${WORKDIR} fallback test. """
supported_eapis = (range(0, 4), (4,))
@@ -27,5 +27,5 @@ class WorkdirFallbackTest(DBusFetchingEbuildTestCase):
}
def __init__(self, *args, **kwargs):
- DBusFetchingEbuildTestCase.__init__(self, *args, **kwargs)
+ FetchingEbuildTestCase.__init__(self, *args, **kwargs)
self.expect_failure = (self.eapi == 4)