Skip to content

Commit 84eeb68

Browse files
drafnelgitster
authored andcommitted
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>
1 parent 6691328 commit 84eeb68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

t/t9001-send-email.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ test_expect_success 'in-reply-to but no threading' '
616616
--from="Example <nobody@example.com>" \
617617
--to=nobody@example.com \
618618
--in-reply-to="<in-reply-id@example.com>" \
619-
--no-thread \
619+
--nothread \
620620
$patches |
621621
grep "In-Reply-To: <in-reply-id@example.com>"
622622
'

0 commit comments

Comments
 (0)