mirror of
https://github.com/libssh2/libssh2.git
synced 2025-11-18 15:20:56 +03:00
9 lines
253 B
C
9 lines
253 B
C
#include "runner.h"
|
|
|
|
int test(LIBSSH2_SESSION *session)
|
|
{
|
|
return test_auth_password(session, TEST_AUTH_SHOULDFAIL,
|
|
"I am the wrong username",
|
|
"my test password"); /* set in Dockerfile */
|
|
}
|