From 1bdd7f2bf638ad5b46b53383c530b62583d1e154 Mon Sep 17 00:00:00 2001 From: Jameer Pathan <21165044+jameerpathan111@users.noreply.github.com> Date: Fri, 6 Dec 2024 17:01:38 +0100 Subject: [PATCH] Revert "Skip /var/log/foreman-proxy/ log assertion for capsule installation" (#17104) Revert "Skip /var/log/foreman-proxy/ log assertion for capsule installation (#17100)" This reverts commit b8890f951682019b1de38ae4b19571fd16bc4905. --- tests/foreman/installer/test_installer.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/foreman/installer/test_installer.py b/tests/foreman/installer/test_installer.py index 71215c7b62..2cc4562320 100644 --- a/tests/foreman/installer/test_installer.py +++ b/tests/foreman/installer/test_installer.py @@ -429,10 +429,9 @@ def test_capsule_installation( # no errors/failures in /var/log/httpd/* result = cap_ready_rhel.execute(r'grep -iR "error" /var/log/httpd/*') assert len(result.stdout) == 0 - if not is_open('SAT-29982'): - # no errors/failures in /var/log/foreman-proxy/* - result = cap_ready_rhel.execute(r'grep -iR "error" /var/log/foreman-proxy/*') - assert len(result.stdout) == 0 + # no errors/failures in /var/log/foreman-proxy/* + result = cap_ready_rhel.execute(r'grep -iR "error" /var/log/foreman-proxy/*') + assert len(result.stdout) == 0 # Enabling firewall cap_ready_rhel.execute('firewall-cmd --add-service RH-Satellite-6-capsule')