Skip to content

Commit

Permalink
refactor: Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Nov 23, 2023
1 parent 844c751 commit d7623f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions merge/src/unordered_merge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ mod tests {
],
};

let right = CSTNode::NonTerminal {
let parent_b = CSTNode::NonTerminal {
kind: "interface_body",
start_position: model::Point { row: 0, column: 0 },
end_position: model::Point { row: 0, column: 0 },
Expand Down Expand Up @@ -319,7 +319,7 @@ mod tests {
};

assert_merge_is_correct_and_idempotent_with_respect_to_parent_side(
&base, &parent_a, &right, &merge,
&base, &parent_a, &parent_b, &merge,
);
}

Expand Down

0 comments on commit d7623f0

Please sign in to comment.