summaryrefslogtreecommitdiff
path: root/t/t9001-send-email.sh
diff options
context:
space:
mode:
authorBrandon Casey <casey@nrlssc.navy.mil>2009-04-24 23:18:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-04-25 15:54:18 (GMT)
commit84eeb687de7a6c7c42af3fb51b176e0f412a979e (patch)
tree2c915ad0ec3e2e21dd86ce700803a5c79761facd /t/t9001-send-email.sh
parent66913284f06da58e2243acfad951a57501b8d813 (diff)
downloadgit-84eeb687de7a6c7c42af3fb51b176e0f412a979e.zip
git-84eeb687de7a6c7c42af3fb51b176e0f412a979e.tar.gz
git-84eeb687de7a6c7c42af3fb51b176e0f412a979e.tar.bz2
t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'
The '--no-thread' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-thread) for boolean options is not supported in Getopt::Long version 2.32 which was released with Perl 5.8.0. This version only supports '--no' as in '--nothread'. More recent versions of Getopt::Long, such as version 2.34, support either prefix. So use the older form in the tests. Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-xt/t9001-send-email.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh
index d9420e0..ce26ea4 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -616,7 +616,7 @@ test_expect_success 'in-reply-to but no threading' '
--from="Example <nobody@example.com>" \
--to=nobody@example.com \
--in-reply-to="<in-reply-id@example.com>" \
- --no-thread \
+ --nothread \
$patches |
grep "In-Reply-To: <in-reply-id@example.com>"
'