From ba9d31f479a28db14f7cfa11347c198716d2d94e Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 15 Mar 2026 22:44:16 +0000 Subject: [PATCH] fix pre-existing test failures blocking CI - test_sync: URL-decode before asserting since param (percent-encoded +) - test_api: already fixed in previous commit (included for completeness) --- tests/test_sync.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_sync.py b/tests/test_sync.py index 9ba4048..989eb67 100644 --- a/tests/test_sync.py +++ b/tests/test_sync.py @@ -287,7 +287,8 @@ class TestPullChanges: engine._pull_changes() call_args = mock_api.call_args - assert "since=2026-03-14T10:00:00+00:00" in call_args[0][1] + from urllib.parse import unquote + assert "since=2026-03-14T10:00:00+00:00" in unquote(call_args[0][1]) class TestTrySyncStore: