Remove the `-q` quiet mode from some instances of `grep`, as the lack of `-q` on the `grep` on line 99 implies that its output is required, when that is not the case. This change ensures consistency and avoids confusion about whether the output of `grep` is used. --- t/t9811-git-p4-label-import.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t9811-git-p4-label-import.sh b/t/t9811-git-p4-label-import.sh index 5abac938d0..e69dae55dc 100755 --- a/t/t9811-git-p4-label-import.sh +++ b/t/t9811-git-p4-label-import.sh @@ -97,8 +97,8 @@ test_expect_success 'two labels on the same changelist' ' git tag >output && grep TAG_F1 output && - grep -q TAG_F1_1 output && - grep -q TAG_F1_2 output && + grep TAG_F1_1 output && + grep TAG_F1_2 output && cd main && -- 2.39.5 (Apple Git-154)