From 8339322eb99240c3776c01d81158ab4da525cc01 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 5 Mar 2023 04:19:20 -0600 Subject: [PATCH] Tests/SSH2: CS adjustment --- tests/Unit/Net/SSH2UnitTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Unit/Net/SSH2UnitTest.php b/tests/Unit/Net/SSH2UnitTest.php index 15735add..ffe9709b 100644 --- a/tests/Unit/Net/SSH2UnitTest.php +++ b/tests/Unit/Net/SSH2UnitTest.php @@ -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() @@ -112,7 +114,7 @@ class Unit_Net_SSH2UnitTest extends PhpseclibTestCase 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());