We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e10586 commit 3fe4204Copy full SHA for 3fe4204
1 file changed
Tools/WebServer/tests/test_file_routes.py
@@ -322,7 +322,8 @@ def test_empty_data(self):
322
data = res.get_json()
323
self.assertFalse(data["success"])
324
325
- def test_invalid_base64(self):
+ @patch("shutil.which", return_value="/usr/bin/icu")
326
+ def test_invalid_base64(self, mock_which):
327
res = self.client.post(
328
"/api/convert/lvgl-to-png", json={"data": "!!!invalid!!!"}
329
)
0 commit comments