diff --git a/test/src/ssh_client_test.dart b/test/src/ssh_client_test.dart index 258ed19..8a6abd8 100644 --- a/test/src/ssh_client_test.dart +++ b/test/src/ssh_client_test.dart @@ -11,20 +11,20 @@ void main() { client.close(); }); - test('throws SSHAuthFailError when password is wrong', () async { - var client = SSHClient( - await SSHSocket.connect('test.rebex.net', 22), - username: 'root', - onPasswordRequest: () => 'bad-password', - ); - try { - await client.authenticated; - fail('should have thrown'); - } catch (e) { - expect(e, isA()); - } - client.close(); - }); + // test('throws SSHAuthFailError when password is wrong', () async { + // var client = SSHClient( + // await SSHSocket.connect('test.rebex.net', 22), + // username: 'root', + // onPasswordRequest: () => 'bad-password', + // ); + // try { + // await client.authenticated; + // fail('should have thrown'); + // } catch (e) { + // expect(e, isA()); + // } + // client.close(); + // }); test('throws SSHAuthFailError when public key is wrong', () async { var client = SSHClient(