Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Jun 8, 2024
1 parent 570415d commit fee943f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/replay_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ def merge_replay(
stdout=subprocess.PIPE,
).stdout.decode("utf-8")
is_conflict = len(conflict_files) > 0
assert is_conflict == (
merge_result == MERGE_STATE.Merge_failed
assert (
is_conflict == (merge_result == MERGE_STATE.Merge_failed)
), f"merge_replay: tool{merge_tool} merge_result {merge_result} does not match conflict_files {conflict_files} at path {repo.local_repo_path}"

result_df.loc[
Expand Down

0 comments on commit fee943f

Please sign in to comment.