From 562125209bba5e10ecdb77bad1de021a5dfad791 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Fri, 22 Nov 2024 08:36:17 -0500 Subject: [PATCH] [6.16.z] On demand download policy is supported for deb (#16988) On demand download policy is supported for deb (#16961) (cherry picked from commit 30e9e87f6685cfa83b720cd1c1a6688624029462) Co-authored-by: dosas --- tests/foreman/api/test_repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/foreman/api/test_repository.py b/tests/foreman/api/test_repository.py index a99c57678b5..28d907cfb81 100644 --- a/tests/foreman/api/test_repository.py +++ b/tests/foreman/api/test_repository.py @@ -479,7 +479,7 @@ def test_negative_update_to_invalid_download_policy(self, repo, target_sat): [ {'content_type': content_type, 'download_policy': 'on_demand'} for content_type in constants.REPO_TYPE - if content_type not in ['yum', 'docker'] + if content_type not in ['yum', 'docker', 'deb'] ], indirect=True, ids=lambda x: x['content_type'],