diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -732,7 +732,7 @@ class svnsubrepo(abstractsubrepo): # URL exists at lastrev. Test it and fallback to rev it # is not there. try: - self._svncommand(['info', '%s@%s' % (self._state[0], lastrev)]) + self._svncommand(['list', '%s@%s' % (self._state[0], lastrev)]) return lastrev except error.Abort: pass diff --git a/tests/test-convert-bzr.t b/tests/test-convert-bzr.t --- a/tests/test-convert-bzr.t +++ b/tests/test-convert-bzr.t @@ -218,25 +218,23 @@ Multiple branches $ bzr co repo/trunk repo-trunk $ cd repo-trunk $ echo a > a - $ bzr add a - adding a - $ bzr ci -qm adda --commit-time '2012-01-01 00:00:01 +0000' + $ bzr add -q a + $ bzr ci -qm adda $ bzr tag trunk-tag Created tag trunk-tag. $ bzr switch -b branch Tree is up to date at revision 1. Switched to branch: *repo/branch/ (glob) $ echo b > b - $ bzr add b - adding b - $ bzr ci -qm addb --commit-time '2012-01-01 00:00:02 +0000' + $ bzr add -q b + $ bzr ci -qm addb $ bzr tag branch-tag Created tag branch-tag. $ bzr switch --force ../repo/trunk Updated to revision 1. Switched to branch: */repo/trunk/ (glob) $ echo a >> a - $ bzr ci -qm changea --commit-time '2012-01-01 00:00:03 +0000' + $ bzr ci -qm changea $ cd .. $ hg convert --datesort repo repo-bzr initializing destination repo-bzr repository @@ -272,8 +270,7 @@ Nested repositories (issue3254) $ bzr co repo/inner/trunk inner-trunk $ cd inner-trunk $ echo b > b - $ bzr add b - adding b + $ bzr add -q b $ bzr ci -qm addb $ cd .. $ hg convert --datesort repo noinner-bzr