Skip to content

Commit e905cd7

Browse files
author
Jordan Hall
committed
Correct password test
1 parent 367c1bc commit e905cd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Integration/SSHConnectionTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ public function testSSHConnectionWithKeyPair()
2626
public function testSSHConnectionWithPassword()
2727
{
2828
$connection = (new SSHConnection())
29-
->to('localhost')
29+
->to('test.rebex.net')
3030
->onPort(22)
31-
->as('travis')
32-
->withPassword('test.rebex.net')
31+
->as('demo')
32+
->withPassword('password')
3333
->connect();
3434

3535
$command = $connection->run('echo "Hello world!"');

0 commit comments

Comments
 (0)