Skip to content

Commit

Permalink
Tests/SSH2: CS adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
terrafrost committed Mar 5, 2023
1 parent 7ce104b commit 8339322
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Unit/Net/SSH2UnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/

use phpseclib\Net\SSH2;

class Unit_Net_SSH2UnitTest extends PhpseclibTestCase
{
public function formatLogDataProvider()
Expand Down Expand Up @@ -112,7 +114,7 @@ public function testEnableQuietMode()

public function testGetTimeout()
{
$ssh = new Net_SSH2('localhost');
$ssh = new SSH2('localhost');
$this->assertEquals(10, $ssh->getTimeout());
$ssh->setTimeout(0);
$this->assertEquals(0, $ssh->getTimeout());
Expand Down

0 comments on commit 8339322

Please sign in to comment.