X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=t%2F2-ZOOM.t;h=ada3ea40ab831126714e0fddf8842b8c26240b3b;hb=e19515ab18d8e5002b39536d9d27ed7243eb4e64;hp=aaf867d13393e9a889a7eed1cbeb109e54d1006b;hpb=40205a3923522999ca96aa0e57e013cb12db7e29;p=ZOOM-Perl-moved-to-github.git diff --git a/t/2-ZOOM.t b/t/2-ZOOM.t index aaf867d..ada3ea4 100644 --- a/t/2-ZOOM.t +++ b/t/2-ZOOM.t @@ -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";