From 3888cd74daf02fa57314632b6ebe8fdbdbe63d00 Mon Sep 17 00:00:00 2001 From: German Service Network Date: Thu, 18 Dec 2025 10:01:22 +0100 Subject: [PATCH] ci: Fix test unkown host --- ci/test-13-unknown-host.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test-13-unknown-host.pl b/ci/test-13-unknown-host.pl index 65c8312..229c4e0 100755 --- a/ci/test-13-unknown-host.pl +++ b/ci/test-13-unknown-host.pl @@ -7,5 +7,5 @@ use Test::Command tests => 3; my $cmd = Test::Command->new(cmd => "fping nosuchname.example.com"); $cmd->exit_is_num(2); $cmd->stdout_is_eq(""); -$cmd->stderr_like(qr{^nosuchname\.example\.com: .*not (known|found)}); +$cmd->stderr_like(qr{^nosuchname\.example\.com: (.*not (known|found)|No address associated with hostname)}); } -- 2.43.0