Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 9d03cb1

Browse files
Test update
1 parent 3036ec0 commit 9d03cb1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

services/tests/test_comparison.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,11 +1787,11 @@ def test_file_has_changes(self):
17871787

17881788
def test_remove_unintended_changes(self):
17891789
lines = [
1790-
LineComparison(1, 1, 1, 1, "line1", False),
1791-
LineComparison(1, 0, 2, 2, "line2", False),
1792-
LineComparison(0, 0, None, 3, "+line3", True),
1793-
LineComparison(0, 0, 4, None, "-line4", True),
1794-
LineComparison(1, 0, 5, 5, "line5", False),
1790+
LineComparison([1, "", [], 0, 0], [1, "", [], 0, 0], 1, 1, "line1", False),
1791+
LineComparison([1, "", [], 0, 0], [0, "", [], 0, 0], 2, 2, "line2", False),
1792+
LineComparison(None, [0, "", [], 0, 0], None, 3, "+line3", True),
1793+
LineComparison([0, "", [], 0, 0], None, 4, None, "-line4", True),
1794+
LineComparison([1, "", [], 0, 0], [0, "", [], 0, 0], 5, 5, "line5", False),
17951795
]
17961796

17971797
segment = Segment(lines)

0 commit comments

Comments
 (0)