diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2008-09-10 06:25:27 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-09 22:59:00 -0700 |
commit | f964732c0560743b666ad4e189a6b148dacf6923 (patch) | |
tree | f6291e958d4dcca660f1e91f998319a88e432495 /t/t9102-git-svn-deep-rmdir.sh | |
parent | t9700: use "git config" without dash (diff) | |
download | tgif-f964732c0560743b666ad4e189a6b148dacf6923.tar.xz |
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>
Diffstat (limited to 't/t9102-git-svn-deep-rmdir.sh')
-rwxr-xr-x | t/t9102-git-svn-deep-rmdir.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9102-git-svn-deep-rmdir.sh b/t/t9102-git-svn-deep-rmdir.sh index ea5a385cad..e223218015 100755 --- a/t/t9102-git-svn-deep-rmdir.sh +++ b/t/t9102-git-svn-deep-rmdir.sh @@ -9,11 +9,11 @@ test_expect_success 'initialize repo' ' mkdir -p deeply/nested/directory/number/2 && echo foo > deeply/nested/directory/number/1/file && echo foo > deeply/nested/directory/number/2/another && - svn import -m "import for git-svn" . "$svnrepo" && + svn import -m "import for git svn" . "$svnrepo" && cd .. ' -test_expect_success 'mirror via git-svn' ' +test_expect_success 'mirror via git svn' ' git svn init "$svnrepo" && git svn fetch && git checkout -f -b test-rmdir ${remotes_git_svn} |