Skip to content

Commit 9f11980

Browse files
committed
Fixing test cases
1 parent 843a040 commit 9f11980

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_diff_text.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1824,9 +1824,9 @@ def test_item_moved(self):
18241824
t2 = [4, 2, 3, 1]
18251825
diff = DeepDiff(t1, t2, verbose_level=2)
18261826
result = {
1827-
'iterable_item_moved': {
1828-
'root[0]': {'new_path': 'root[3]', 'value': 1},
1829-
'root[3]': {'new_path': 'root[0]', 'value': 4},
1827+
'values_changed': {
1828+
'root[0]': {'new_value': 4, 'old_value': 1},
1829+
'root[3]': {'new_value': 1, 'old_value': 4},
18301830
}
18311831
}
18321832
assert result == diff

0 commit comments

Comments
 (0)