diff options
author | Ghanshyam Thakkar <shyamthakkar001@gmail.com> | 2024-02-13 01:05:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-02-13 23:12:53 +0100 |
commit | 7abc1869e552b80ea35923ae4315cb8bb0b47b64 (patch) | |
tree | a55209a1093ae41fd9c31789455a822edc342810 /t/t2024-checkout-dwim.sh | |
parent | add-patch: classify '@' as a synonym for 'HEAD' (diff) | |
download | git-7abc1869e552b80ea35923ae4315cb8bb0b47b64.tar.xz git-7abc1869e552b80ea35923ae4315cb8bb0b47b64.zip |
add -p tests: remove PERL prerequisites
The Perl version of the add -i/-p commands has been removed since
20b813d (add: remove "add.interactive.useBuiltin" & Perl "git
add--interactive", 2023-02-07)
Therefore, Perl prerequisite in the test scripts which use the patch
mode functionality is not neccessary.
Signed-off-by: Ghanshyam Thakkar <shyamthakkar001@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t2024-checkout-dwim.sh')
-rwxr-xr-x | t/t2024-checkout-dwim.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2024-checkout-dwim.sh b/t/t2024-checkout-dwim.sh index a97416ce65..a3b1449ef1 100755 --- a/t/t2024-checkout-dwim.sh +++ b/t/t2024-checkout-dwim.sh @@ -113,7 +113,7 @@ test_expect_success 'checkout of branch from multiple remotes fails with advice' test_grep ! "^hint: " stderr ' -test_expect_success PERL 'checkout -p with multiple remotes does not print advice' ' +test_expect_success 'checkout -p with multiple remotes does not print advice' ' git checkout -B main && test_might_fail git branch -D foo && |