From 3d758dd30f2a2b7fa8e057e35cfa81b9716fe741 Mon Sep 17 00:00:00 2001 From: dosas Date: Fri, 22 Nov 2024 14:23:23 +0100 Subject: [PATCH] On demand download policy is supported for deb (#16961) (cherry picked from commit 30e9e87f6685cfa83b720cd1c1a6688624029462) --- 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 c96a33d0446..e05ef5acdc2 100644 --- a/tests/foreman/api/test_repository.py +++ b/tests/foreman/api/test_repository.py @@ -482,7 +482,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'],