summaryrefslogtreecommitdiffstats
path: root/tests/portage_versions
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_versions
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_versions')
-rw-r--r--tests/portage_versions/__init__.py2
-rw-r--r--tests/portage_versions/test_vercmp.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/portage_versions/__init__.py b/tests/portage_versions/__init__.py
index 76f62f969..5e5b216fb 100644
--- a/tests/portage_versions/__init__.py
+++ b/tests/portage_versions/__init__.py
@@ -1,4 +1,4 @@
-# tests/portage_versions/__init__.py -- Portage Unit Test functionality
+# tests/portage.versions/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
diff --git a/tests/portage_versions/test_vercmp.py b/tests/portage_versions/test_vercmp.py
index 117472e49..ee3d37741 100644
--- a/tests/portage_versions/test_vercmp.py
+++ b/tests/portage_versions/test_vercmp.py
@@ -4,10 +4,10 @@
# $Id$
from unittest import TestCase
-from portage_versions import vercmp
+from portage.versions import vercmp
class VerCmpTestCase(TestCase):
- """ A simple testCase for portage_versions.vercmp()
+ """ A simple testCase for portage.versions.vercmp()
"""
def testVerCmpGreater(self):