diff --git a/ci/test-7-options-i-m.pl b/ci/test-7-options-i-m.pl index 33c6cc3..279c740 100755 --- a/ci/test-7-options-i-m.pl +++ b/ci/test-7-options-i-m.pl @@ -27,8 +27,8 @@ $cmd->stdout_like(qr{127\.0\.0\.1 : \[0\], 84 bytes, 0\.\d+ ms \(0.\d+ avg, 0% l # fping -m { -my $cmd = Test::Command->new(cmd => "fping -m localhost"); +my $cmd = Test::Command->new(cmd => "fping -m google-public-dns-a.google.com is alive"); $cmd->exit_is_num(0); -$cmd->stdout_is_eq("localhost is alive\n"); +$cmd->stdout_is_eq("google-public-dns-a.google.com is alive\n"); $cmd->stderr_is_eq(""); } diff --git a/ci/test-8-options-n-q.pl b/ci/test-8-options-n-q.pl index a0df4fd..28e599f 100755 --- a/ci/test-8-options-n-q.pl +++ b/ci/test-8-options-n-q.pl @@ -13,9 +13,9 @@ use File::Temp; # fping -n { -my $cmd = Test::Command->new(cmd => "fping -n 127.0.0.1"); +my $cmd = Test::Command->new(cmd => "fping -n 8.8.8.8"); $cmd->exit_is_num(0); -$cmd->stdout_is_eq("localhost is alive\n"); +$cmd->stdout_is_eq("google-public-dns-a.google.com is alive\n"); $cmd->stderr_is_eq(""); }