tests: use "git foo" without dash in strings

This changes "git-foo" to "git foo" when message strings in tests
name git subcommands.

Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nanako Shiraishi
2008-09-10 06:25:27 +09:00
committed by Junio C Hamano
parent 1f77354b02
commit f964732c05
9 changed files with 13 additions and 13 deletions

View File

@ -16,12 +16,12 @@ enable-auto-props=$1
EOF
}
test_expect_success 'initialize git-svn' '
test_expect_success 'initialize git svn' '
mkdir import &&
(
cd import &&
echo foo >foo &&
svn import -m "import for git-svn" . "$svnrepo"
svn import -m "import for git svn" . "$svnrepo"
) &&
rm -rf import &&
git svn init "$svnrepo"