mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-12 14:08:28 +02:00
Linter pt. 3
This commit is contained in:
parent
29dc3111ae
commit
aabe4df12a
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue