summaryrefslogtreecommitdiffstats
path: root/tests/portage_util/test_normalizedPath.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_normalizedPath.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_normalizedPath.py')
-rw-r--r--tests/portage_util/test_normalizedPath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/portage_util/test_normalizedPath.py b/tests/portage_util/test_normalizedPath.py
index 9740306aa..bd575d266 100644
--- a/tests/portage_util/test_normalizedPath.py
+++ b/tests/portage_util/test_normalizedPath.py
@@ -9,7 +9,7 @@ class NormalizePathTestCase(TestCase):
def testNormalizePath(self):
- from portage_util import normalize_path
+ from portage.util import normalize_path
path = "///foo/bar/baz"
good = "/foo/bar/baz"
self.assertEqual(normalize_path(path), good)