diff options
author | Emma Foley <emma.l.foley@intel.com> | 2017-11-30 00:20:09 +0000 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2018-01-11 20:54:55 +0000 |
commit | c2c8b6b181026c5aaf9bcea655dcb2f4a2b1cad8 (patch) | |
tree | 521849125b47b086260a22196b0e66adbdf7d11f | |
parent | 5702f5b5e0721d9af61e494691376f32652e0048 (diff) |
Move tests: unit/test_ssh.py
Change-Id: I0eabdd5d7e918dcf0df747119a104dedf125606f
Jira: YARDSTICK-837
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
-rw-r--r-- | yardstick/tests/unit/test_ssh.py (renamed from tests/unit/test_ssh.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_ssh.py b/yardstick/tests/unit/test_ssh.py index 88699fd85..dbaae8c37 100644 --- a/tests/unit/test_ssh.py +++ b/yardstick/tests/unit/test_ssh.py @@ -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: |