From 7c74434fc3b766bdd51b636f7cbb87ebed0170d0 Mon Sep 17 00:00:00 2001 From: Shweta Singh Date: Tue, 13 Feb 2024 17:58:07 +0530 Subject: [PATCH] Remove BZ check which is migrated to Jira and Add new BZ check causing selinux denials (#13923) Remove_NonExistent_BZ (cherry picked from commit cf3de35527147893039f5c46004171f662c9e729) --- tests/foreman/sys/test_pulp3_filesystem.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/foreman/sys/test_pulp3_filesystem.py b/tests/foreman/sys/test_pulp3_filesystem.py index af19af65f92..ac747ca5f10 100644 --- a/tests/foreman/sys/test_pulp3_filesystem.py +++ b/tests/foreman/sys/test_pulp3_filesystem.py @@ -27,15 +27,13 @@ def test_selinux_status(target_sat): :expectedresults: SELinux is enabled and there are no denials - :customerscenario: true - - :BZ: 2131031 + :BZ: 2263294 """ # check SELinux is enabled result = target_sat.execute('getenforce') assert 'Enforcing' in result.stdout # check there are no SELinux denials - if not is_open('BZ:2131031'): + if not is_open('BZ:2263294'): result = target_sat.execute('ausearch --input-logs -m avc -ts today --raw') assert result.status == 1, 'Some SELinux denials were found in journal.'