From b4b55fae548dbabd01a8282520b09df8c229298a Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 31 Jan 2024 02:08:44 +0100 Subject: [PATCH] Fix empty catalog test --- src/tests/test_app_catalog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/test_app_catalog.py b/src/tests/test_app_catalog.py index a2482d8b5..f436dd877 100644 --- a/src/tests/test_app_catalog.py +++ b/src/tests/test_app_catalog.py @@ -72,7 +72,7 @@ def test_apps_catalog_emptylist(): os.system("touch %s" % APPS_CATALOG_CONF) apps_catalog_list = _read_apps_catalog_list() - assert len(apps_catalog_list) + assert len(apps_catalog_list) == 0 def test_apps_catalog_update_nominal(mocker):