Skip to content

Commit fc0a027

Browse files
committed
Merge branch 'sg/t6112-unwanted-tilde-expansion-fix' into seen
Test fix. * sg/t6112-unwanted-tilde-expansion-fix: t6112: avoid tilde expansion
2 parents d7c3d90 + 890229b commit fc0a027

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

t/t6112-rev-list-filters-objects.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,9 +623,9 @@ test_expect_success 'verify collecting omits in combined: filter' '
623623
omitted_2=$(echo a | git hash-object --stdin) &&
624624
omitted_3=$(echo abcde | git hash-object --stdin) &&
625625
626-
grep ~$omitted_1 actual &&
627-
grep ~$omitted_2 actual &&
628-
grep ~$omitted_3 actual &&
626+
grep "~$omitted_1" actual &&
627+
grep "~$omitted_2" actual &&
628+
grep "~$omitted_3" actual &&
629629
test_line_count = 3 actual
630630
'
631631

0 commit comments

Comments
 (0)