Skip to content

Commit 4cf237c

Browse files
committed
Merge branch 'dl/merge-autostash'
Test fix. * dl/merge-autostash: t5520: avoid alternation in grep's BRE (not POSIX)
2 parents 80e013c + c703309 commit 4cf237c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t5520-pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test_pull_autostash_fail () {
2828
echo dirty >new_file &&
2929
git add new_file &&
3030
test_must_fail git pull "$@" . copy 2>err &&
31-
test_i18ngrep "\(uncommitted changes.\)\|\(overwritten by merge:\)" err
31+
test_i18ngrep -E "uncommitted changes.|overwritten by merge:" err
3232
}
3333

3434
test_expect_success setup '

0 commit comments

Comments
 (0)