Skip to content

Commit

Permalink
Fix order of precedence bug (#19658)
Browse files Browse the repository at this point in the history
  • Loading branch information
EliSchleifer authored Apr 11, 2024
1 parent 4bf4bf3 commit 2612105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn maybe_add_logical_merge_conflict(last_pr: u32, config: &Conf) -> bool {
}

// check if we should simulate a logical merge conflict with this pull request
if last_pr + 1 % config.pullrequest.logical_conflict_every != 0 {
if (last_pr + 1) % config.pullrequest.logical_conflict_every != 0 {
return false;
}

Expand Down

0 comments on commit 2612105

Please sign in to comment.