From ddbd3670855404a26998f22f6202b1b18c32fda5 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 31 Jan 2024 02:43:43 +0100 Subject: [PATCH] Fix app resource test --- src/tests/test_app_resources.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/test_app_resources.py b/src/tests/test_app_resources.py index d2df647a3..914320f48 100644 --- a/src/tests/test_app_resources.py +++ b/src/tests/test_app_resources.py @@ -44,6 +44,7 @@ def setup_function(function): os.system("echo 'id: testapp' > /etc/yunohost/apps/testapp/settings.yml") os.system("echo 'packaging_format = 2' > /etc/yunohost/apps/testapp/manifest.toml") os.system("echo 'id = \"testapp\"' >> /etc/yunohost/apps/testapp/manifest.toml") + os.system("echo 'description.en = \"A dummy app to test app resources\"' >> /etc/yunohost/apps/testapp/manifest.toml") def teardown_function(function):