diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 23:28:48 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 23:28:48 -0500 |
commit | 8bda24dcb4bc8ca0969e78b3cced9bf82c010343 (patch) | |
tree | c6aa3cfa2618a1edf3d0f8b2c15ec83a5fa1114c /tests/test_client.py | |
parent | 2d3e8db0674cba7eae5e616d261d2ab41e75c54c (diff) |
s/mock/unittest.mock/g
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 3eaad4fb..a0dcab1a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -35,7 +35,7 @@ from tempfile import mkstemp import pytest from pytest_relaxed import raises -from mock import patch, Mock +from unittest.mock import patch, Mock import paramiko from paramiko import SSHClient |