Correct Red Hat connection-failure checks -- addinfo is empty when errcode==TIMEOUT
[ZOOM-Perl-moved-to-github.git] / t / 2-ZOOM.t
index aaf867d..ada3ea4 100644 (file)
@@ -19,8 +19,8 @@ my $conn;
 eval { $conn = new ZOOM::Connection($host, 0) };
 # For some reason, Red Hat signals this as a TIMEOUT rather than a CONNECT
 ok($@ && $@->isa("ZOOM::Exception") &&
-   ($@->code() == ZOOM::Error::CONNECT ||
-    $@->code() == ZOOM::Error::TIMEOUT) && $@->addinfo() eq $host,
+   (($@->code() == ZOOM::Error::CONNECT && $@->addinfo() eq $host) ||
+    ($@->code() == ZOOM::Error::TIMEOUT && $@->addinfo() eq "")),
    "connection to non-existent host '$host' fails: \$\@=$@");
 
 $host = "z3950.indexdata.com/gils";