From 9ff588463df20be326b61b8b3b28a0aa0631cb1a Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 23 Oct 2023 21:59:23 +0200 Subject: [PATCH] test: Relax expected browser error Drop the "CommitFailure:" part from the expected browser error when trying to commit a container with an invalid name. This is unnecessarily strict, and https://github.com/containers/podman/pull/20377 is going to change it. --- test/check-application | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/check-application b/test/check-application index 81ad21b67..9e6cb60e1 100755 --- a/test/check-application +++ b/test/check-application @@ -886,7 +886,7 @@ class TestApplication(testlib.MachineCase): def _testCommit(self, auth): b = self.browser - self.allow_browser_errors("Failed to commit container .*: CommitFailure: repository name must be lowercase") + self.allow_browser_errors("Failed to commit container .* repository name must be lowercase") self.login(auth)