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

Test fix.

* sg/t6112-unwanted-tilde-expansion-fix:
  t6112: avoid tilde expansion
This commit is contained in:
Junio C Hamano
2026-05-19 09:57:44 +09:00
+3 -3
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
'