aboutsummaryrefslogtreecommitdiff
path: root/t/t9104-git-svn-follow-parent.sh
diff options
context:
space:
mode:
authorSam Vilain <sam.vilain@catalyst.net.nz>2007-09-21 14:02:33 +1200
committerJunio C Hamano <gitster@pobox.com>2007-09-21 02:42:16 -0700
commit400e58b74e701398bd7e51bd3f102f31cc45ee93 (patch)
treec86bfaa32d15ba183bae3a215f32cbfcef947e7a /t/t9104-git-svn-follow-parent.sh
parent17ed158021ead9cb056f692fc35ff3fcde96a747 (diff)
downloadgit-400e58b74e701398bd7e51bd3f102f31cc45ee93.tar.gz
git-400e58b74e701398bd7e51bd3f102f31cc45ee93.tar.xz
git-svn: fix test for trunk svn (commit message not needed)
The 'svn mv -m "rename to thunk"' was a local operation, therefore not needing a commit message, it was silently ignored. Newer svn clients will instead raise an error. Signed-off-by: Sam Vilain <sam.vilain@catalyst.net.nz> Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9104-git-svn-follow-parent.sh')
-rwxr-xr-xt/t9104-git-svn-follow-parent.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/t9104-git-svn-follow-parent.sh b/t/t9104-git-svn-follow-parent.sh
index d8f9cab35..9eab94569 100755
--- a/t/t9104-git-svn-follow-parent.sh
+++ b/t/t9104-git-svn-follow-parent.sh
@@ -19,8 +19,7 @@ test_expect_success 'initialize repo' "
poke trunk/readme &&
svn commit -m 'another commit' &&
svn up &&
- svn mv -m 'rename to thunk' trunk thunk &&
- svn up &&
+ svn mv trunk thunk &&
echo goodbye >> thunk/readme &&
poke thunk/readme &&
svn commit -m 'bye now' &&