We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4afd04 commit a41258aCopy full SHA for a41258a
mergin/test/test_client.py
@@ -409,7 +409,7 @@ def test_push_pull_changes(mc):
409
# renamed file will result in removed + added file
410
assert next((f for f in push_changes["removed"] if f["path"] == f_renamed), None)
411
assert next((f for f in push_changes["added"] if f["path"] == "renamed.txt"), None)
412
- assert not pull_changes["renamed"] # not supported
+ assert not pull_changes.get("renamed") # not supported
413
414
mc.push_project(project_dir)
415
0 commit comments