diff options
Diffstat (limited to 't/t9123-git-svn-rebuild-with-rewriteroot.sh')
-rwxr-xr-x | t/t9123-git-svn-rebuild-with-rewriteroot.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/t/t9123-git-svn-rebuild-with-rewriteroot.sh b/t/t9123-git-svn-rebuild-with-rewriteroot.sh index c18878fad1..fd8184787f 100755 --- a/t/t9123-git-svn-rebuild-with-rewriteroot.sh +++ b/t/t9123-git-svn-rebuild-with-rewriteroot.sh @@ -3,21 +3,21 @@ # Copyright (c) 2008 Jan Krüger # -test_description='git-svn respects rewriteRoot during rebuild' +test_description='git svn respects rewriteRoot during rebuild' . ./lib-git-svn.sh mkdir import -cd import +(cd import touch foo - svn import -m 'import for git-svn' . "$svnrepo" >/dev/null -cd .. + svn_cmd import -m 'import for git svn' . "$svnrepo" >/dev/null +) rm -rf import test_expect_success 'init, fetch and checkout repository' ' git svn init --rewrite-root=http://invalid.invalid/ "$svnrepo" && - git svn fetch - git checkout -b mybranch remotes/git-svn + git svn fetch && + git checkout -b mybranch ${remotes_git_svn} ' test_expect_success 'remove rev_map' ' |