From: Dobrica Pavlinusic Date: Fri, 20 May 2011 12:00:45 +0000 (+0000) Subject: use LISTEN env variable if defined X-Git-Url: http://git.rot13.org/?p=virtual-ldap;a=commitdiff_plain;h=5c319ed11b02a59799ce3d2a141f580f910f44df;ds=sidebyside use LISTEN env variable if defined --- diff --git a/t/ldap-koha.t b/t/ldap-koha.t index cc8191a..2825ad4 100755 --- a/t/ldap-koha.t +++ b/t/ldap-koha.t @@ -21,7 +21,7 @@ sub ldap_check_error { diag $o->error if $o->code; } -ok( my $ldap = Net::LDAP->new( 'localhost:2389' ), 'new Net::LDAP' ); +ok( my $ldap = Net::LDAP->new( $ENV{LISTEN} || 'localhost:2389' ), 'new Net::LDAP' ); ok( my $bind = $ldap->bind, 'bind' ); ldap_check_error $bind;