From 0ffe9cd509bc68083449c3295783dd23d9119cd5 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Tue, 27 Feb 2024 13:27:39 +0100 Subject: [PATCH] test: drop allowing cockpit-ws assertion This assertion should no longer appear since Cockpit 260. --- test/check-application | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/check-application b/test/check-application index 5aca09984..9d790b2a5 100755 --- a/test/check-application +++ b/test/check-application @@ -163,9 +163,6 @@ class TestApplication(testlib.MachineCase): self.has_selinux = "arch" not in m.image and "debian" not in m.image and "ubuntu" not in m.image self.has_cgroupsV2 = m.image not in ["centos-8-stream"] and not m.image.startswith('rhel-8') - # HACK: older c-ws versions always log an assertion, fixed in PR cockpit#16765 - self.allow_journal_messages("json_object_get_string_member: assertion 'node != NULL' failed") - self.system_images_count = int(self.execute(True, "podman images -n | wc -l").strip()) self.user_images_count = int(self.execute(False, "podman images -n | wc -l").strip())