Linter pt. 3

This commit is contained in:
zandercymatics 2023-10-19 10:11:23 -06:00
parent 29dc3111ae
commit aabe4df12a
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -159,12 +159,13 @@ class TestConnectionPool(TestCase):
# Fake data for the _pool object # Fake data for the _pool object
def fake_client(self): def fake_client(self):
pw = "none"
client = Client( client = Client(
SocketTransport( SocketTransport(
"none", "none",
cert_file="path/to/cert_file", cert_file="path/to/cert_file",
key_file="path/to/key_file", key_file="path/to/key_file",
password="none", password=pw,
) )
) )
return client return client