summaryrefslogtreecommitdiffstats
path: root/tests/portage_util/test_stackDictList.py
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-01-27 18:12:48 +0000
committerAlec Warner <antarus@gentoo.org>2007-01-27 18:12:48 +0000
commit707aa6e9662c4a6f4572914717138d6e0f3ddaf7 (patch)
tree67ebd5dd5dc6e0c1da9c7e1cf42b4ba2a2a90612 /tests/portage_util/test_stackDictList.py
parentf4bc045a1a0bf07f12f75ddd189a0fad6c7f4c6d (diff)
downloadportage-707aa6e9662c4a6f4572914717138d6e0f3ddaf7.tar.gz
portage-707aa6e9662c4a6f4572914717138d6e0f3ddaf7.tar.bz2
portage-707aa6e9662c4a6f4572914717138d6e0f3ddaf7.zip
fix namespacing in tests
svn path=/main/trunk/; revision=5792
Diffstat (limited to 'tests/portage_util/test_stackDictList.py')
-rw-r--r--tests/portage_util/test_stackDictList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/portage_util/test_stackDictList.py b/tests/portage_util/test_stackDictList.py
index 45b67b838..9e7a38ba1 100644
--- a/tests/portage_util/test_stackDictList.py
+++ b/tests/portage_util/test_stackDictList.py
@@ -8,7 +8,7 @@ from unittest import TestCase
class StackDictListTestCase(TestCase):
def testStackDictList(self):
- from portage_util import stack_dictlist
+ from portage.util import stack_dictlist
tests = [ ({'a':'b'},{'x':'y'},False,{'a':['b'],'x':['y']}) ]
tests.append(( {'KEYWORDS':['alpha','x86']},{'KEYWORDS':['-*']},True,{} ))