diff options
author | Glenn Rempe <glenn@rempe.us> | 2007-09-24 13:33:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-24 23:01:42 -0700 |
commit | 85d81a757e495fe74d8a403f813d3748e832c112 (patch) | |
tree | c90c9205e9002b807bc2752b42bbe3d8511b5269 /t/t9001-send-email.sh | |
parent | 15eda0202aa3c63fa7b8f9f72df86f4e50eb1d2b (diff) | |
download | git-85d81a757e495fe74d8a403f813d3748e832c112.tar.gz git-85d81a757e495fe74d8a403f813d3748e832c112.tar.xz |
Fixed minor typo in t/t9001-send-email.sh test command line.
The git-send-email command line in the test was missing a single hyphen.
Signed-off-by: Glenn Rempe <glenn@rempe.us>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-x | t/t9001-send-email.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index e9ea33c18..83f947020 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -30,7 +30,7 @@ test_expect_success 'Extract patches' ' ' test_expect_success 'Send patches' ' - git send-email -from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors + git send-email --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors ' cat >expected <<\EOF |