From d46f298e6209187640164a7581d4330148b158dd Mon Sep 17 00:00:00 2001 From: David Schweikert Date: Wed, 21 Feb 2018 18:42:29 +0100 Subject: [PATCH] fix test-14-ping-internet-hosts.pl failing --- ci/test-14-ping-internet-hosts.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test-14-ping-internet-hosts.pl b/ci/test-14-ping-internet-hosts.pl index 5f4f842..7e97c82 100755 --- a/ci/test-14-ping-internet-hosts.pl +++ b/ci/test-14-ping-internet-hosts.pl @@ -43,9 +43,9 @@ $cmd->stderr_is_eq(""); # fping -4 --addr --rdns { -my $cmd = Test::Command->new(cmd => "fping -4 --addr --rdns www.google.com"); +my $cmd = Test::Command->new(cmd => "fping -4 --addr --rdns www.apple.com"); $cmd->exit_is_num(0); -$cmd->stdout_like(qr{^\S+\.1e100\.net \(\d+\.\d+\.\d+\.\d+\) is alive\n$}); +$cmd->stdout_like(qr{^\S+\.akamaitechnologies\.com \(\d+\.\d+\.\d+\.\d+\) is alive\n$}); $cmd->stderr_is_eq(""); }