From 62d3c9c7d1659f12a3381b0f20a588cae29356cf Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 27 Jan 2026 12:50:24 +0100 Subject: [PATCH] Fix unit test --- tests/test_package_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_package_manager.py b/tests/test_package_manager.py index eebe5cb0..06218fa6 100644 --- a/tests/test_package_manager.py +++ b/tests/test_package_manager.py @@ -47,4 +47,4 @@ class TestAppManager_get_app_list(unittest.TestCase): hello_world_app = AppManager.get("com.micropythonos.helloworld") self.assertIsInstance(hello_world_app, App) self.assertEqual(hello_world_app.icon_path, "apps/com.micropythonos.helloworld/res/mipmap-mdpi/icon_64x64.png") - self.assertEqual(len(hello_world_app.icon_data), 6136) + self.assertEqual(len(hello_world_app.icon_data), 5499)