From d96103d1abbed7d4edb84354ae78f1e0181b75d4 Mon Sep 17 00:00:00 2001 From: Parveen Kumar Date: Thu, 19 Mar 2026 22:32:12 +0530 Subject: [PATCH 1/2] [patch] update catalog tag for test_data --- test/src/test_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_data.py b/test/src/test_data.py index cbf0f152..8c09e006 100644 --- a/test/src/test_data.py +++ b/test/src/test_data.py @@ -32,7 +32,7 @@ def test_list_catalogs(): def test_get_newest_catalog_tag(): catalogTag = getNewestCatalogTag("amd64") # Reminder: update this test when adding a new catalog each month! - assert True or catalogTag == "v9-260129-amd64" + assert True or catalogTag == "v9-260313-amd64" def test_get_newest_catalog_tag_fail(): From a33a76eb92935dabefd27a54865703113f8e60d4 Mon Sep 17 00:00:00 2001 From: Parveen Kumar Date: Thu, 19 Mar 2026 22:34:11 +0530 Subject: [PATCH 2/2] [patch] remove True or condition --- test/src/test_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_data.py b/test/src/test_data.py index 8c09e006..e61cac6b 100644 --- a/test/src/test_data.py +++ b/test/src/test_data.py @@ -32,7 +32,7 @@ def test_list_catalogs(): def test_get_newest_catalog_tag(): catalogTag = getNewestCatalogTag("amd64") # Reminder: update this test when adding a new catalog each month! - assert True or catalogTag == "v9-260313-amd64" + assert catalogTag == "v9-260313-amd64" def test_get_newest_catalog_tag_fail():