Skip to content

Commit a41258a

Browse files
committed
Fix renamed missing key
1 parent e4afd04 commit a41258a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mergin/test/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def test_push_pull_changes(mc):
409409
# renamed file will result in removed + added file
410410
assert next((f for f in push_changes["removed"] if f["path"] == f_renamed), None)
411411
assert next((f for f in push_changes["added"] if f["path"] == "renamed.txt"), None)
412-
assert not pull_changes["renamed"] # not supported
412+
assert not pull_changes.get("renamed") # not supported
413413

414414
mc.push_project(project_dir)
415415

0 commit comments

Comments
 (0)