Tests: removed alert skip, unnecessary after 1a48ea61fec8.

This commit is contained in:
Andrei Zeliankou 2023-06-12 17:28:42 +01:00
parent a378f6aa31
commit c6d05191a0
3 changed files with 0 additions and 12 deletions

View file

@ -7,10 +7,6 @@ prerequisites = {'modules': {'go': 'all'}}
class TestGoApplication(TestApplicationGo):
@pytest.fixture(autouse=True)
def setup_method_fixture(self, skip_alert):
skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor')
def test_go_application_variables(self, date_to_sec_epoch, sec_epoch):
self.load('variables')

View file

@ -11,10 +11,6 @@ prerequisites = {'modules': {'go': 'any'}, 'features': {'isolation': True}}
class TestGoIsolation(TestApplicationGo):
@pytest.fixture(autouse=True)
def setup_method_fixture(self, skip_alert):
skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor')
def unpriv_creds(self):
nobody_uid = pwd.getpwnam('nobody').pw_uid

View file

@ -9,10 +9,6 @@ prerequisites = {
class TestGoIsolationRootfs(TestApplicationGo):
@pytest.fixture(autouse=True)
def setup_method_fixture(self, skip_alert):
skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor')
def test_go_isolation_rootfs_chroot(self, temp_dir):
isolation = {'rootfs': temp_dir}