Move tests: unit/test_ssh.py 01/48201/7
authorEmma Foley <emma.l.foley@intel.com>
Thu, 30 Nov 2017 00:20:09 +0000 (00:20 +0000)
committerRoss Brattain <ross.b.brattain@intel.com>
Thu, 11 Jan 2018 20:54:55 +0000 (20:54 +0000)
Change-Id: I0eabdd5d7e918dcf0df747119a104dedf125606f
Jira: YARDSTICK-837
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
yardstick/tests/unit/test_ssh.py [moved from tests/unit/test_ssh.py with 99% similarity]

similarity index 99%
rename from tests/unit/test_ssh.py
rename to yardstick/tests/unit/test_ssh.py
index 88699fd..dbaae8c 100644 (file)
@@ -262,7 +262,7 @@ class SSHTestCase(unittest.TestCase):
                          self.test_client.execute.mock_calls)
 
     @mock.patch("yardstick.ssh.paramiko")
-    def test_send_command(self, mock_paramiko):
+    def test_send_command(self, _):
         paramiko_sshclient = self.test_client._get_client()
         with mock.patch.object(paramiko_sshclient, "exec_command") \
                 as mock_paramiko_exec_command: