Mercurial > hgsubversion
diff tests/comprehensive/test_stupid_pull.py @ 241:4950b18cf949
Move fetch_command.fetch_revisions() to svncommands.pull().
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 08 Apr 2009 17:49:30 +0200 |
parents | 906d3f302b45 |
children | ffccf0080e54 |
line wrap: on
line diff
--- a/tests/comprehensive/test_stupid_pull.py +++ b/tests/comprehensive/test_stupid_pull.py @@ -6,7 +6,7 @@ from mercurial import hg from mercurial import ui from tests import test_util -import fetch_command +import svncommands def _do_case(self, name): @@ -18,10 +18,8 @@ def _do_case(self, name): checkout_path = self.repo_path if subdir: checkout_path += '/' + subdir - fetch_command.fetch_revisions(ui.ui(), - svn_url=test_util.fileurl(checkout_path), - hg_repo_path=wc2_path, - stupid=True) + svncommands.pull(ui.ui(), svn_url=test_util.fileurl(checkout_path), + hg_repo_path=wc2_path, stupid=True) self.repo2 = hg.repository(ui.ui(), wc2_path) self.assertEqual(self.repo.branchtags(), self.repo2.branchtags()) self.assertEqual(pickle.load(open(os.path.join(self.wc_path, '.hg', 'svn', 'tag_info'))),