diff options
author | David Aguilar <davvid@gmail.com> | 2013-02-24 14:48:39 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-24 21:30:10 -0800 |
commit | b978403aed7f2df46bc4c8a63314959d8982e0ac (patch) | |
tree | fab454dbdd4fb8734309938f65e33435f3ec2b78 /t/lib-git-svn.sh | |
parent | 0b670abd974f50f3bf675d30c093cb7309151ac0 (diff) | |
download | git-b978403aed7f2df46bc4c8a63314959d8982e0ac.tar.gz |
tests: use a lowercase "usage:" string
Adjust test commands and test suites so that their
usage strings are consistent with Git.
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-svn.sh')
-rw-r--r-- | t/lib-git-svn.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh index 199f22c231..c5e55b190b 100644 --- a/t/lib-git-svn.sh +++ b/t/lib-git-svn.sh @@ -148,7 +148,7 @@ stop_httpd () { convert_to_rev_db () { "$PERL_PATH" -w -- - "$@" <<\EOF use strict; -@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>"; +@ARGV == 2 or die "usage: convert_to_rev_db <input> <output>"; open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]"; open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]"; my $size = (stat($rd))[7]; |