summaryrefslogtreecommitdiffstats
path: root/tests/portage_util/test_normalizedPath.py
diff options
context:
space:
mode:
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)