Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ assert_conflict_comment_merges() {
expected+="git merge $conflict"$'\n'
done
expected=${expected%$'\n'}
actual=$(echo "$comment" | grep -E '^git merge' | sed 's/ *#.*//' || true)
actual=$(echo "$comment" | grep -E '^git merge' | grep -v -- '--ff-only' | sed 's/ *#.*//' || true)

if [[ "$actual" == "$expected" ]]; then
echo >&2 "✅ Verification Passed: conflict comment lists expected merge command(s)."
Expand Down
Loading