read-tree: add t1013 for submodule updates
[gitweb.git] / t / t9155-git-svn-fetch-deleted-tag.sh
index ef0ac8779eda28efba97664b5cedd85c464553f1..184336f34611c7b10da936ca0b78bb5e77afb77f 100755 (executable)
@@ -12,7 +12,7 @@ test_expect_success 'setup svn repo' '
        svn_cmd import -m "import for git svn" import "$svnrepo" &&
        rm -rf import &&
 
-       svn_cmd mkdir --parents -m "create mybranch directory" "$svnrepo/branches/mybranch" &&
+       svn_cmd mkdir -m "create mybranch directory" "$svnrepo/branches/mybranch" &&
        svn_cmd cp -m "create branch mybranch" "$svnrepo/trunk" "$svnrepo/branches/mybranch/trunk" &&
 
        svn_cmd co "$svnrepo/trunk" svn_project &&
@@ -35,8 +35,8 @@ test_expect_success 'fetch deleted tags from same revision with checksum error'
        cd git_project &&
        git svn fetch &&
 
-       git diff --exit-code mybranch:trunk/subdir/file tags/mytag:file &&
-       git diff --exit-code master:subdir/file tags/mytag^:file
+       git diff --exit-code origin/mybranch:trunk/subdir/file origin/tags/mytag:file &&
+       git diff --exit-code master:subdir/file origin/tags/mytag^:file
 '
 
 test_done