Mercurial > hgsubversion
changeset 333:a59ab58969d9
test_util: normalize path in svnls()
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Tue, 12 May 2009 20:12:32 +0200 |
parents | 56d877e6ccbb |
children | 3c3c3264c362 |
files | tests/test_util.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test_util.py +++ b/tests/test_util.py @@ -14,6 +14,8 @@ from mercurial import hg from mercurial import node from mercurial import ui +import util + # Fixtures that need to be pulled at a subdirectory of the repo path subdir = {'truncatedhistory.svndump': '/project2', 'fetch_missing_files_subdir.svndump': '/foo', @@ -116,7 +118,7 @@ class TestBase(unittest.TestCase): def svnls(self, path, rev='HEAD'): path = self.repo_path + '/' + path - path = fileurl(path) + path = util.normalize_url(fileurl(path)) args = ['svn', 'ls', '-r', rev, '-R', path] p = subprocess.Popen(args, stdout=subprocess.PIPE,