Merge branch 'sg/t6112-unwanted-tilde-expansion-fix'

Test fix.

* sg/t6112-unwanted-tilde-expansion-fix:
  t6112: avoid tilde expansion
main
Junio C Hamano 2026-05-19 09:57:44 +09:00
commit 6bfdc87e99
1 changed files with 3 additions and 3 deletions

View File

@ -623,9 +623,9 @@ test_expect_success 'verify collecting omits in combined: filter' '
omitted_2=$(echo a | git hash-object --stdin) &&
omitted_3=$(echo abcde | git hash-object --stdin) &&

grep ~$omitted_1 actual &&
grep ~$omitted_2 actual &&
grep ~$omitted_3 actual &&
grep "~$omitted_1" actual &&
grep "~$omitted_2" actual &&
grep "~$omitted_3" actual &&
test_line_count = 3 actual
'