From 0bde33805295e53af1ac94cae09bc83dff334937 Mon Sep 17 00:00:00 2001 From: paxcut Date: Mon, 9 Mar 2026 03:48:17 -0700 Subject: [PATCH 1/2] fix: json format unit test. Recent changes to json string format output produces a result different from the one saved in the data read to check the result. The expected string is changed to match the resulting formatted string. --- tests/files/export/json.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/files/export/json.json b/tests/files/export/json.json index a20a9bca..9539d9b0 100644 --- a/tests/files/export/json.json +++ b/tests/files/export/json.json @@ -1,6 +1,6 @@ { "data": { - "s": "%89PNG%0D%0A%1A%0A%00", + "s": "�PNG\\r\\n\\u001a\\n\\u0000", "ua": 0, "ub": 3328, "uc": 1380206665, From f4cb2b68c46f6143531981bc1945edc32d063b32 Mon Sep 17 00:00:00 2001 From: paxcut Date: Mon, 9 Mar 2026 04:03:45 -0700 Subject: [PATCH 2/2] removed escaping chars. --- tests/files/export/json.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/files/export/json.json b/tests/files/export/json.json index 9539d9b0..03ee9762 100644 --- a/tests/files/export/json.json +++ b/tests/files/export/json.json @@ -1,6 +1,6 @@ { "data": { - "s": "�PNG\\r\\n\\u001a\\n\\u0000", + "s": "�PNG\r\n\u001a\n\u0000", "ua": 0, "ub": 3328, "uc": 1380206665,