t9902: 'send-email' test case requires PERL

The oneline notwithstanding, 13374987dd (completion: use _gitcompbuiltin for format-patch, 2018-11-03) changed also the way send-email options are completed, by asking the git send-email command itself what options it offers. Necessarily, this must fail when built with NO_PERL because send-email itself is a Perl script. Which means that we need the PERL prerequisite for the send-email test case in t9902. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Dec 13, 2018 at 06:04 UTC 0365b9ec59f5fbe6a1a638bdb006d0ebcbd53a99
1 file changed +1 -1
t/t9902-completion.sh
+1 -1
@@ -1539,7 +1539,7 @@ test_expect_success 'complete tree filename with metacharacters' '
1539 EOF
1540 '
1541
1542 -test_expect_success 'send-email' '
1542 +test_expect_success PERL 'send-email' '
1543 test_completion "git send-email --cov" "--cover-letter " &&
1544 test_completion "git send-email ma" "master "
1545 '