diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-08-12 22:45:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-08-12 22:45:53 +0200 |
commit | 1ed2e474b2f458d85e178ba1500c83758a265f92 (patch) | |
tree | 310629d46aceb9a2a3f77f21414c8f4c8fe9efc5 /pmstestsuite/library/standard/depend.py | |
parent | HTML output: include PM version as well. (diff) | |
download | pms-test-suite-1ed2e474b2f458d85e178ba1500c83758a265f92.tar.gz pms-test-suite-1ed2e474b2f458d85e178ba1500c83758a265f92.tar.bz2 pms-test-suite-1ed2e474b2f458d85e178ba1500c83758a265f92.zip |
Use relative imports within the test library.
Diffstat (limited to 'pmstestsuite/library/standard/depend.py')
-rw-r--r-- | pmstestsuite/library/standard/depend.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pmstestsuite/library/standard/depend.py b/pmstestsuite/library/standard/depend.py index 2a3049f..0ecfe9e 100644 --- a/pmstestsuite/library/standard/depend.py +++ b/pmstestsuite/library/standard/depend.py @@ -2,8 +2,8 @@ # (c) 2011 Michał Górny <mgorny@gentoo.org> # Released under the terms of the 2-clause BSD license. -from pmstestsuite.library.standard.dbus_case import DBusEbuildDependencyTestCase -from pmstestsuite.library.standard.util import EbuildToucher, FailingEbuild +from .dbus_case import DBusEbuildDependencyTestCase +from .util import EbuildToucher, FailingEbuild class DependTest(DBusEbuildDependencyTestCase): """ DEPEND fulfilling test. """ |