Skip to content

Commit

Permalink
fix comments/messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sdepassio committed Mar 4, 2025
1 parent 9bc96e0 commit 9729572
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/cpan-libraries/libssh-session.pl
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
);

print "Trying to connect...\n";
$session->connect() == SSH_OK or die "Échec de connexion: " . $session->get_error();
$session->connect() == SSH_OK or die "Connection failed: " . $session->get_error();

print "Trying to authenticate...\n";
$session->auth_password(password => "testpassword") == SSH_AUTH_SUCCESS or die "Échec d'authentification: " . $session->get_error();
$session->auth_password(password => "testpassword") == SSH_AUTH_SUCCESS or die "Authentification failed: " . $session->get_error();

print "SSH connection test succeeded\n";
$session->disconnect();
Expand Down
1 change: 0 additions & 1 deletion tests/cpan-libraries/net-curl.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use strict;
use warnings;
use Net::Curl::Easy qw(:constants);
# All comments and messages must be in english

# URL to fetch
my $url = 'https://www.centreon.com';
Expand Down

0 comments on commit 9729572

Please sign in to comment.