Skip to content

Commit

Permalink
Test update
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitvinnakota-codecov committed Dec 19, 2024
1 parent 3036ec0 commit 9d03cb1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions services/tests/test_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -1787,11 +1787,11 @@ def test_file_has_changes(self):

def test_remove_unintended_changes(self):
lines = [
LineComparison(1, 1, 1, 1, "line1", False),
LineComparison(1, 0, 2, 2, "line2", False),
LineComparison(0, 0, None, 3, "+line3", True),
LineComparison(0, 0, 4, None, "-line4", True),
LineComparison(1, 0, 5, 5, "line5", False),
LineComparison([1, "", [], 0, 0], [1, "", [], 0, 0], 1, 1, "line1", False),
LineComparison([1, "", [], 0, 0], [0, "", [], 0, 0], 2, 2, "line2", False),
LineComparison(None, [0, "", [], 0, 0], None, 3, "+line3", True),
LineComparison([0, "", [], 0, 0], None, 4, None, "-line4", True),
LineComparison([1, "", [], 0, 0], [0, "", [], 0, 0], 5, 5, "line5", False),
]

segment = Segment(lines)
Expand Down

0 comments on commit 9d03cb1

Please sign in to comment.