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>
This commit is contained in:
David Aguilar
2013-02-24 14:48:39 -08:00
committed by Junio C Hamano
parent 0b670abd97
commit b978403aed
5 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ int main(int argc, char *argv[])
unsigned char *c;
if (argc < 2 || argc > 3) {
fprintf(stderr, "Usage: %s <seed_string> [<size>]\n", argv[0]);
fprintf(stderr, "usage: %s <seed_string> [<size>]\n", argv[0]);
return 1;
}