Skip to content

Commit 907a0b1

Browse files
drafnelgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e21a857 commit 907a0b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t9001-send-email.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ test_expect_success 'no warning with an explicit --no-chain-reply-to' '
827827
--dry-run \
828828
--from="Example <[email protected]>" \
829829
830-
--no-chain-reply-to \
830+
--nochain-reply-to \
831831
outdir/000?-*.patch 2>errors >out &&
832832
! grep "no-chain-reply-to" errors
833833
'

0 commit comments

Comments
 (0)