From: Sam Vilain Date: Fri, 21 Sep 2007 02:02:33 +0000 (+1200) Subject: git-svn: fix test for trunk svn (commit message not needed) X-Git-Tag: v1.5.4-rc0~406^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=400e58b74e701398bd7e51bd3f102f31cc45ee93;p=git.git 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 Acked-by: Eric Wong Signed-off-by: Junio C Hamano --- 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' &&