Ver código fonte

Fix check_http test (altinity.com redirects now).

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2067 f882894a-f735-0410-b71e-b25c423dba1c
Thomas Guyot-Sionnest 17 anos atrás
pai
commit
8f24f0bfdf
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      plugins/t/check_http.t

+ 2 - 2
plugins/t/check_http.t

@@ -35,7 +35,7 @@ my $host_tcp_http2;
 if ($internet_access eq "no") {
     $host_tcp_http2     = getTestParameter( "NP_HOST_TCP_HTTP2", 
             "A host providing an index page containing the string 'nagios'", 
-            "altinity.com" );
+            "www.nagios.com" );
 }
 
 
@@ -74,7 +74,7 @@ SKIP: {
         skip "No internet access and no host serving nagios in index file",
               7 if $internet_access eq "no" && ! $host_tcp_http2;
 
-        $host_tcp_http2 = "altinity.com" if (! $host_tcp_http2);
+        $host_tcp_http2 = "www.nagios.com" if (! $host_tcp_http2);
 
         $res = NPTest->testCmd( "./check_http -H $host_tcp_http2 -r 'nagios'" );
         cmp_ok( $res->return_code, "==", 0, "Got a reference to 'nagios'");