From ea026f3ba4ce4b96034cfba494d08f0f19b2109f Mon Sep 17 00:00:00 2001 From: David Schweikert Date: Fri, 2 May 2014 14:37:20 +0200 Subject: [PATCH] test fixes --- ci/test-7-options-i-m.pl | 4 ++-- ci/test-8-options-n-q.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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(""); } -- 2.43.0