diff options
Diffstat (limited to 'pmstestsuite/library/standard/phase_function_order.py')
-rw-r--r-- | pmstestsuite/library/standard/phase_function_order.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pmstestsuite/library/standard/phase_function_order.py b/pmstestsuite/library/standard/phase_function_order.py index a9f24ac..12a2234 100644 --- a/pmstestsuite/library/standard/phase_function_order.py +++ b/pmstestsuite/library/standard/phase_function_order.py @@ -2,15 +2,15 @@ # (c) 2011-2012 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 PhaseFunctionOrderTest(DBusEbuildTestCase): +class PhaseFunctionOrderTest(EbuildTestCase): """ Phase function execution order test. """ supported_eapis = ((0, 1), (2, 3), (4,)) def __init__(self, *args, **kwargs): - DBusEbuildTestCase.__init__(self, *args, **kwargs) + EbuildTestCase.__init__(self, *args, **kwargs) for k, lines in self.phase_funcs.items(): lines.append('pms-test_dbus_append_result %s' % k) @@ -24,5 +24,4 @@ class PhaseFunctionOrderTest(DBusEbuildTestCase): expect.extend(['src_prepare', 'src_configure']) expect.extend(['src_compile', 'src_install', 'pkg_preinst', 'pkg_postinst']) - DBusEbuildTestCase.check_dbus_result(self, output, pm) self.assertEqual(output, expect, 'Executed phases') |