aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xt/t6120-describe.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t6120-describe.sh b/t/t6120-describe.sh
index dcb526e37d..71e261394a 100755
--- a/t/t6120-describe.sh
+++ b/t/t6120-describe.sh
@@ -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 &&