X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/da961187f97344fde390140ebb2f10d10d334d51..ba55d062da8dfb89a37afc2f13f2e689d0094829:/test/ganeti.utils_unittest.py?ds=sidebyside diff --git a/test/ganeti.utils_unittest.py b/test/ganeti.utils_unittest.py index 433bfe3..846b4b4 100755 --- a/test/ganeti.utils_unittest.py +++ b/test/ganeti.utils_unittest.py @@ -975,10 +975,10 @@ class TestIsAbsNormPath(unittest.TestCase): def _pathTestHelper(self, path, result): if result: self.assert_(IsNormAbsPath(path), - "Path %s should be absolute and normal" % path) + "Path %s should result absolute and normalized" % path) else: self.assert_(not IsNormAbsPath(path), - "Path %s should not be absolute and normal" % path) + "Path %s should not result absolute and normalized" % path) def testBase(self): self._pathTestHelper('/etc', True)