]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t6120: further modernize
authorJunio C Hamano <gitster@pobox.com>
Tue, 11 Mar 2025 21:25:04 +0000 (14:25 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 12 Mar 2025 15:48:54 +0000 (08:48 -0700)
There is absolutely no reason why a pattern given to grep to find
'warning: --stdin is deprecated' must be quoted within a pair of
single quotes, or the pattern to look for the literal string as ERE.

Quote the test body with a pair of single quotes like everybody
else, and quote the needle string in a pair of double quotes.  Also
use test_grep instead of "grep -E".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t6120-describe.sh

index dcb526e37d4ea0522353313aebc195577eea7500..71e261394ae5beb085ddd29feab4f41d6d6b1fa7 100755 (executable)
@@ -298,11 +298,11 @@ test_expect_success 'name-rev --annotate-stdin' '
        test_cmp expect actual
 '
 
-test_expect_success 'name-rev --stdin deprecated' "
+test_expect_success 'name-rev --stdin deprecated' '
        git rev-list --all >list &&
        git name-rev --stdin <list 2>actual &&
-       grep -E 'warning: --stdin is deprecated' actual
-"
+       test_grep "warning: --stdin is deprecated" actual
+'
 
 test_expect_success 'describe --contains with the exact tags' '
        echo "A^0" >expect &&