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.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/portage_util/test_normalizedPath.py b/tests/portage_util/test_normalizedPath.py
index 9f9a60597..3354e254e 100644
--- a/tests/portage_util/test_normalizedPath.py
+++ b/tests/portage_util/test_normalizedPath.py
@@ -12,5 +12,4 @@ class NormalizePathTestCase(TestCase):
from portage_util import normalize_path
path = "///foo/bar/baz"
good = "/foo/bar/baz"
- self.failUnless(normalize_path(path) == good, msg="NormalizePath(%s) failed to produce %s" % (path, good))
-
+ self.assertEqual(normalize_path(path), good)