From 46a1a0c1c2eda95322f5eaacd1da9a78817ef565 Mon Sep 17 00:00:00 2001 From: Marc Philip Scholten Date: Tue, 17 Dec 2013 20:09:26 +0100 Subject: [PATCH] Fixed typo and fixed bug with destructor being called in test on ssh object --- tests/Net/SSH2Test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Net/SSH2Test.php b/tests/Net/SSH2Test.php index 92af099f..954fb8b2 100644 --- a/tests/Net/SSH2Test.php +++ b/tests/Net/SSH2Test.php @@ -29,9 +29,9 @@ class Net_SSH2Test extends PhpseclibTestCase */ public function testFormatLog(array $message_log, array $message_number_log, $expected) { - $ssh = $this->getMockBuilder('Net_SSH1') + $ssh = $this->getMockBuilder('Net_SSH2') ->disableOriginalConstructor() - ->setMethods(null) + ->setMethods(array('__destruct')) ->getMock(); $result = $ssh->_format_log($message_log, $message_number_log);