fix low level issues

This commit is contained in:
Davide Scaini
2026-03-31 23:22:12 +02:00
parent 8f91503cf7
commit 81438231b4
19 changed files with 126 additions and 44 deletions
+2 -2
View File
@@ -67,10 +67,10 @@ BASE_DETAIL = {
def test_apply_sidecar_title_and_sport():
fm = {"title": "Renamed", "sport": "gravel"}
fm = {"title": "Renamed", "sport": "running"}
result = apply_sidecar(BASE_DETAIL, fm, "")
assert result["title"] == "Renamed"
assert result["sport"] == "gravel"
assert result["sport"] == "running"
# Original must be unchanged
assert BASE_DETAIL["title"] == "Morning Ride"