aboutsummaryrefslogtreecommitdiff
path: root/t/t9107-git-svn-migrate.sh
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2012-07-28 02:47:46 -0700
committerEric Wong <normalperson@yhbt.net>2012-08-02 21:45:59 +0000
commit1a35da0b5dc74dc23d7184f838c5dea9bd544334 (patch)
tree4ee064f48ad2a29201c66e23be08880d66ed013f /t/t9107-git-svn-migrate.sh
parentdad9090f89b8d24f2cb7ecc70f21f52274224c30 (diff)
downloadgit-1a35da0b5dc74dc23d7184f838c5dea9bd544334.tar.gz
git-1a35da0b5dc74dc23d7184f838c5dea9bd544334.tar.xz
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 <normalperson@yhbt.net>
Diffstat (limited to 't/t9107-git-svn-migrate.sh')
-rwxr-xr-xt/t9107-git-svn-migrate.sh2
1 files changed, 1 insertions, 1 deletions
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" &&