summaryrefslogtreecommitdiff
path: root/t/t9001-send-email.sh
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2009-12-03 17:52:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-12-03 18:07:17 (GMT)
commit907a0b1e04ea31cb368e9422df93d8ebb0187914 (patch)
treed437b9c7a251f800839d275a29a9e9581d522498 /t/t9001-send-email.sh
parente21a8577089cb10fed5f298796ba3685010dfaef (diff)
downloadgit-907a0b1e04ea31cb368e9422df93d8ebb0187914.zip
git-907a0b1e04ea31cb368e9422df93d8ebb0187914.tar.gz
git-907a0b1e04ea31cb368e9422df93d8ebb0187914.tar.bz2
t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'
The '--no-chain-reply-to' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-chain-reply-to) 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 '--nochain-reply-to'. 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 fb51ab3..752adaa 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -827,7 +827,7 @@ test_expect_success 'no warning with an explicit --no-chain-reply-to' '
--dry-run \
--from="Example <nobody@example.com>" \
--to=nobody@example.com \
- --no-chain-reply-to \
+ --nochain-reply-to \
outdir/000?-*.patch 2>errors >out &&
! grep "no-chain-reply-to" errors
'