feat: remove mock from test dependencies.

Because mock can be replace by unittest.mock
This commit is contained in:
masahitojp
2021-01-16 09:59:28 +09:00
committed by Brian May
parent 254b8e7987
commit 65d437a9f8
9 changed files with 7 additions and 9 deletions

View File

@ -1,7 +1,7 @@
import socket
from socket import AF_INET, AF_INET6
from mock import Mock, patch, call
from unittest.mock import Mock, patch, call
from sshuttle.methods import get_method