diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2008-09-08 19:02:05 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-08 14:18:04 -0700 |
commit | 16805d3e59250769f409480ca3cb739281bc906c (patch) | |
tree | c447912506cacebaf3b7e5496196aa99abafd256 /t/t9120-git-svn-clone-with-percent-escapes.sh | |
parent | 24fa13cbb7c520f787370b471b4f04652fbb68d5 (diff) | |
download | git-16805d3e59250769f409480ca3cb739281bc906c.tar.gz |
t/t91XX-svn: start removing use of "git-" from these tests
Subversion tests use too many "git-foo" form, so I am converting them
in two steps.
This first step replaces literal strings "remotes/git-svn" and "git-svn-id"
by introducing $remotes_git_svn and $git_svn_id constants defined as shell
variables. This will reduce the number of false hits from "git grep".
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9120-git-svn-clone-with-percent-escapes.sh')
-rwxr-xr-x | t/t9120-git-svn-clone-with-percent-escapes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9120-git-svn-clone-with-percent-escapes.sh b/t/t9120-git-svn-clone-with-percent-escapes.sh index 5979e133b9..e5de22949f 100755 --- a/t/t9120-git-svn-clone-with-percent-escapes.sh +++ b/t/t9120-git-svn-clone-with-percent-escapes.sh @@ -21,7 +21,7 @@ else test_expect_success 'test clone with percent escapes' ' git svn clone "$svnrepo/pr%20ject" clone && cd clone && - git rev-parse refs/remotes/git-svn && + git rev-parse refs/${remotes_git_svn} && cd .. ' fi |