From 0dba9ba453e0583ca4f8bade52c1dc2ca4eab5a4 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Wed, 4 Mar 2026 11:41:51 -0500 Subject: [PATCH] Fix push system negative test Signed-off-by: Chris Evich --- test/system/150-login.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/150-login.bats b/test/system/150-login.bats index 8f3d75e1b7..1cdf580871 100644 --- a/test/system/150-login.bats +++ b/test/system/150-login.bats @@ -181,7 +181,7 @@ EOF run_podman 125 push --authfile=$authfile \ --tls-verify=false $IMAGE \ localhost:${PODMAN_LOGIN_REGISTRY_PORT}/badpush:1 - is "$output" ".*: unauthorized: authentication required" \ + is "$output" ".*: authentication required" \ "auth error on push" }