# HG changeset patch # User Sergey Kandaurov # Date 1405675378 -14400 # Node ID d5b541a8cf958a677c1aa862dd8de83415571c79 # Parent 60888e2c3f5a123f7ab1ecb89fc933aae1409dd1 Tests: removed extra EOL in auth_basic.t requests. While here, fixed sloppy coding. diff --git a/auth_basic.t b/auth_basic.t --- a/auth_basic.t +++ b/auth_basic.t @@ -120,9 +120,9 @@ like(http_get_auth('/', 'sha3', '1'), qr sub http_get_auth { my ($url, $user, $password) = @_; - my $auth = encode_base64($user . ':' . $password); + my $auth = encode_base64($user . ':' . $password, ''); - my $r = http(<