aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-01-03 13:14:20 +0100
committerMichał Górny <mgorny@gentoo.org>2012-01-03 13:14:20 +0100
commit14499d0e86f67f556e2631c687eaf20e82ca9e43 (patch)
treea3e2d65a7f6b58dcb9291fc446d355c0bfb77188 /pmstestsuite/library/standard/doins_fail.py
parentProceed with output checks even if test fails to merge. (diff)
downloadpms-test-suite-14499d0e86f67f556e2631c687eaf20e82ca9e43.tar.gz
pms-test-suite-14499d0e86f67f556e2631c687eaf20e82ca9e43.tar.bz2
pms-test-suite-14499d0e86f67f556e2631c687eaf20e82ca9e43.zip
Remove old dbus_case API.
Diffstat (limited to 'pmstestsuite/library/standard/doins_fail.py')
-rw-r--r--pmstestsuite/library/standard/doins_fail.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pmstestsuite/library/standard/doins_fail.py b/pmstestsuite/library/standard/doins_fail.py
index a965377..0088fe6 100644
--- a/pmstestsuite/library/standard/doins_fail.py
+++ b/pmstestsuite/library/standard/doins_fail.py
@@ -2,9 +2,9 @@
# (c) 2011 Michał Górny <mgorny@gentoo.org>
# Released under the terms of the 2-clause BSD license.
-from .dbus_case import DBusEbuildTestCase
+from pmstestsuite.library.case import EbuildTestCase
-class DoInsFailureTest(DBusEbuildTestCase):
+class DoInsFailureTest(EbuildTestCase):
""" doins() failure handling test. """
supported_eapis = (range(0, 4), (4,))
@@ -17,5 +17,5 @@ class DoInsFailureTest(DBusEbuildTestCase):
}
def __init__(self, *args, **kwargs):
- DBusEbuildTestCase.__init__(self, *args, **kwargs)
+ EbuildTestCase.__init__(self, *args, **kwargs)
self.expect_failure = (self.eapi == 4)