From: Michael G. Schwern Date: Sat, 28 Jul 2012 09:47:46 +0000 (-0700) Subject: t9107: fix typo X-Git-Tag: v1.8.0-rc0~155^2~6 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1a35da0b5dc74dc23d7184f838c5dea9bd544334;p=git-core%2Fgit.git t9107: fix typo Test to check that the migration got rid of the old style git-svn directory. It wasn't failing, just throwing a message to STDERR. [ew: commit title] Signed-off-by: Eric Wong --- diff --git a/t/t9107-git-svn-migrate.sh b/t/t9107-git-svn-migrate.sh index 289fc313f..cfb4453ca 100755 --- a/t/t9107-git-svn-migrate.sh +++ b/t/t9107-git-svn-migrate.sh @@ -32,7 +32,7 @@ test_expect_success 'initialize old-style (v0) git svn layout' ' echo "$svnrepo" > "$GIT_DIR"/git-svn/info/url && echo "$svnrepo" > "$GIT_DIR"/svn/info/url && git svn migrate && - ! test -d "$GIT_DIR"/git svn && + ! test -d "$GIT_DIR"/git-svn && git rev-parse --verify refs/${remotes_git_svn}^0 && git rev-parse --verify refs/remotes/svn^0 && test "$(git config --get svn-remote.svn.url)" = "$svnrepo" &&